summary refs log tree commit diff
path: root/pkgs/development/libraries/gmm/default.nix
blob: cf62b6a224baaad7b740139ce1ad2843fd98ddcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "gmm-4.3";

  src = fetchurl {
    url = http://download.gna.org/getfem/stable/gmm-4.3.tar.gz;
    sha256 = "0wpp3k73wd3rblsrwxl6djq6m11fx3q5wgw0pl41m9liswsw6din";
  };

  meta = { 
    description = "Generic C++ template library for sparse, dense and skyline matrices";
    homepage = http://home.gna.org/getfem/gmm_intro.html;
    license = stdenv.lib.licenses.lgpl21Plus;
  };
}