2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2017-03-12 23:05:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gmm-${version}";
|
2018-10-02 23:30:36 +01:00
|
|
|
version = "5.3";
|
2008-04-21 16:20:49 +01:00
|
|
|
|
2010-07-28 12:55:54 +01:00
|
|
|
src = fetchurl {
|
2018-10-02 23:30:36 +01:00
|
|
|
url = "mirror://savannah/getfem/stable/${name}.tar.gz";
|
|
|
|
sha256 = "0lkjd3n0298w1dli446z320sn7mqdap8h9q31nydkbw2k7b4db46";
|
2008-04-21 16:20:49 +01:00
|
|
|
};
|
|
|
|
|
2017-03-12 23:05:06 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Generic C++ template library for sparse, dense and skyline matrices";
|
2018-10-02 23:30:36 +01:00
|
|
|
homepage = http://getfem.org/gmm.html;
|
2017-03-12 23:05:06 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.unix;
|
2008-04-21 16:20:49 +01:00
|
|
|
};
|
|
|
|
}
|