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