octave.pkgs.gsl: init at 2.1.1

This commit is contained in:
Karl Hallsby 2021-01-06 11:10:26 -06:00 committed by Doron Behar
parent 33cc927ed7
commit 4777d9123a
2 changed files with 30 additions and 0 deletions

View file

@ -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";
};
}

View file

@ -107,6 +107,10 @@ makeScope newScope (self:
geometry = callPackage ../development/octave-modules/geometry { };
gsl = callPackage ../development/octave-modules/gsl {
inherit (pkgs) gsl;
};
io = callPackage ../development/octave-modules/io {
inherit (octave) enableJava;
};