48 lines
905 B
Nix
48 lines
905 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
gmpxx,
|
|
flint,
|
|
arb,
|
|
nauty,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "normaliz";
|
|
version = "3.10.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "normaliz";
|
|
repo = "normaliz";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-qmbLgjAkLrW8rqFthK3H4n63zLVJ33Pe82V7yU1StOo=";
|
|
};
|
|
|
|
buildInputs = [
|
|
gmpxx
|
|
flint
|
|
arb
|
|
nauty
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"lib"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.normaliz.uni-osnabrueck.de/";
|
|
description = "Open source tool for computations in affine monoids, vector configurations, lattice polytopes, and rational cones";
|
|
maintainers = with maintainers; [ yannickulrich ];
|
|
platforms = with platforms; unix ++ windows;
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "normaliz";
|
|
};
|
|
})
|