octave.pkgs.gsl: init at 2.1.1
This commit is contained in:
parent
33cc927ed7
commit
4777d9123a
|
@ -0,0 +1,26 @@
|
||||||
|
{ buildOctavePackage
|
||||||
|
, lib
|
||||||
|
, fetchurl
|
||||||
|
, gsl
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildOctavePackage rec {
|
||||||
|
pname = "gsl";
|
||||||
|
version = "2.1.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
|
||||||
|
sha256 = "1lvfxbqmw8h1nlrxmvrl6j4xffmbzxfhdpxz3vrc6lg2g4jwaa6h";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gsl
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://octave.sourceforge.io/gsl/index.html";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ KarlJoad ];
|
||||||
|
description = "Octave bindings to the GNU Scientific Library";
|
||||||
|
};
|
||||||
|
}
|
|
@ -107,6 +107,10 @@ makeScope newScope (self:
|
||||||
|
|
||||||
geometry = callPackage ../development/octave-modules/geometry { };
|
geometry = callPackage ../development/octave-modules/geometry { };
|
||||||
|
|
||||||
|
gsl = callPackage ../development/octave-modules/gsl {
|
||||||
|
inherit (pkgs) gsl;
|
||||||
|
};
|
||||||
|
|
||||||
io = callPackage ../development/octave-modules/io {
|
io = callPackage ../development/octave-modules/io {
|
||||||
inherit (octave) enableJava;
|
inherit (octave) enableJava;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue