gsl (gnu scientific library) added
svn path=/nixpkgs/trunk/; revision=9851
This commit is contained in:
parent
d870cba8bc
commit
b15b963936
2 changed files with 22 additions and 0 deletions
17
pkgs/development/libraries/gsl/default.nix
Normal file
17
pkgs/development/libraries/gsl/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "gsl-1.9";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = ftp://ftp.gnu.org/gnu/gsl/gsl-1.9.tar.gz;
|
||||
sha256 = "0l12js65c1qf3s7gmgay6gj5nbs6635py41dj8nk3hlp95wcdlgw";
|
||||
};
|
||||
|
||||
buildInputs =(with args; []);
|
||||
|
||||
meta = {
|
||||
description = "numerical library (>1000 functions)";
|
||||
homepage = http://www.gnu.org/software/gsl;
|
||||
license = "GPL2";
|
||||
};
|
||||
}
|
|
@ -1846,6 +1846,11 @@ rec {
|
|||
inherit fetchurl stdenv libgpgerror gnupg;
|
||||
};
|
||||
|
||||
# gnu scientific library
|
||||
gsl = import ../development/libraries/gsl {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
gtkLibs = recurseIntoAttrs gtkLibs210;
|
||||
|
||||
gtkLibs1x = import ../development/libraries/gtk-libs-1.x {
|
||||
|
|
Loading…
Reference in a new issue