mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
19 lines
487 B
Nix
19 lines
487 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gmm";
|
|
version = "5.4.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/getfem/stable/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-UgbnMmQ/aTQQkCiy8XNmDywu3LDuJpIo1pSsym4iyIo=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Generic C++ template library for sparse, dense and skyline matrices";
|
|
homepage = "http://getfem.org/gmm.html";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|