about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/octave-modules/gsl/default.nix
blob: 5922c015dbdf0a5fa749cbd3e739ad076dacb07d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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";
  };
}