alvr: 20.11.1 -> 20.12.1 (#374869)
[NixPkgs.git] / pkgs / development / octave-modules / gsl / default.nix
blobe7379d22cc7b278594858eb45765fdd425926989
2   buildOctavePackage,
3   stdenv,
4   lib,
5   fetchurl,
6   gsl,
7 }:
9 buildOctavePackage rec {
10   pname = "gsl";
11   version = "2.1.1";
13   src = fetchurl {
14     url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
15     sha256 = "1lvfxbqmw8h1nlrxmvrl6j4xffmbzxfhdpxz3vrc6lg2g4jwaa6h";
16   };
18   buildInputs = [
19     gsl
20   ];
22   meta = with lib; {
23     homepage = "https://octave.sourceforge.io/gsl/index.html";
24     license = licenses.gpl2Plus;
25     maintainers = with maintainers; [ KarlJoad ];
26     description = "Octave bindings to the GNU Scientific Library";
27     # error: use of undeclared identifier 'feval'; did you mean 'octave::feval'?
28     # error: no member named 'is_real_type' in 'octave_value'
29     broken = stdenv.hostPlatform.isDarwin;
30   };