mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
kde shipped with a copy of this lib. They have removed it. I guess we need id nevertheless?
svn path=/nixpkgs/trunk/; revision=11669
This commit is contained in:
parent
ccb0730d5e
commit
9152db766f
17
pkgs/development/libraries/gmm/default.nix
Normal file
17
pkgs/development/libraries/gmm/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "gmm-3.0";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = http://download.gna.org/getfem/stable/gmm-3.0.tar.gz;
|
||||
sha256 = "1lc34w68s0rhii6caklvq2pyc3jaa4g6kza948ya8ha6rr8d1ypp";
|
||||
};
|
||||
|
||||
buildInputs =(with args; []);
|
||||
|
||||
meta = {
|
||||
description = "generic C++ template library for sparse, dense and skyline matrices";
|
||||
homepage = http://home.gna.org/getfem/gmm_intro.html;
|
||||
license = "LGLP2.1"; # or later
|
||||
};
|
||||
}
|
|
@ -2499,6 +2499,10 @@ let pkgs = rec {
|
|||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
gmm = import ../development/libraries/gmm {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
gmp = import ../development/libraries/gmp {
|
||||
inherit fetchurl stdenv m4;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue