nixpkgs/pkgs/development/libraries/gmm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
487 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-03-12 23:05:06 +00:00
stdenv.mkDerivation rec {
pname = "gmm";
2022-07-31 09:45:19 +00:00
version = "5.4.2";
src = fetchurl {
url = "mirror://savannah/getfem/stable/${pname}-${version}.tar.gz";
2022-07-31 09:45:19 +00:00
sha256 = "sha256-UgbnMmQ/aTQQkCiy8XNmDywu3LDuJpIo1pSsym4iyIo=";
};
meta = with lib; {
description = "Generic C++ template library for sparse, dense and skyline matrices";
homepage = "http://getfem.org/gmm.html";
2017-03-12 23:05:06 +00:00
license = licenses.lgpl21Plus;
platforms = platforms.unix;
};
}