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

stdenv.mkDerivation rec {
  name = "gmm-${version}";
  version = "5.1";

  src = fetchurl {
    url ="http://download.gna.org/getfem/stable/${name}.tar.gz";
    sha256 = "0di68vdn34kznf96rnwrpb3bbm3ahaczwxd306s9dx41kcqbzrlh";
  };

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