mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
86a23bcfff
gmm: Remove whitespace
19 lines
504 B
Nix
19 lines
504 B
Nix
{ 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;
|
|
};
|
|
}
|