nixpkgs/pkgs/development/libraries/gmm/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

17 lines
426 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "gmm-3.0";
src = fetchurl {
url = http://download.gna.org/getfem/stable/gmm-3.0.tar.gz;
sha256 = "1lc34w68s0rhii6caklvq2pyc3jaa4g6kza948ya8ha6rr8d1ypp";
};
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
};
}