octave.pkgs.io: init at 2.6.3

This commit is contained in:
Karl Hallsby 2020-12-16 13:12:15 -06:00 committed by Doron Behar
parent 77fdefa2a8
commit 6bb3161645
2 changed files with 33 additions and 1 deletions

View file

@ -0,0 +1,32 @@
{ buildOctavePackage
, lib
, fetchurl
, enableJava
, jdk
, unzip
}:
buildOctavePackage rec {
pname = "io";
version = "2.6.3";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "044y8lfp93fx0592mv6x2ss0nvjkjgvlci3c3ahav76pk1j3rikb";
};
buildInputs = [
(lib.optional enableJava jdk)
];
propagatedBuildInputs = [
unzip
];
meta = with lib; {
homepage = "https://octave.sourceforge.io/io/index.html";
license = with licenses; [ gpl3Plus bsd2 ];
maintainers = with maintainers; [ KarlJoad ];
description = "Input/Output in external formats";
};
}

View file

@ -76,7 +76,7 @@ makeScope newScope (self:
control = callPackage ../development/octave-modules/control { };
io = callPackage ../development/octave-modules/io {
unzip = pkgs.unzip;
inherit (octave) enableJava;
};
level-set = callPackage ../development/octave-modules/level-set { };