mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
39 lines
771 B
Nix
39 lines
771 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, glpk
|
|
, gmp
|
|
}:
|
|
|
|
stdenv.mkDerivation rec{
|
|
pname = "4ti2";
|
|
version = "1.6.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "Release_${builtins.replaceStrings ["."] ["_"] version}";
|
|
hash = "sha256-cywneIM0sHt1iQsNfjyQDoDfdRjxpz4l3rfysi9YN20=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glpk
|
|
gmp
|
|
];
|
|
|
|
installFlags = [ "install-exec" ];
|
|
|
|
meta = with lib;{
|
|
homepage = "https://4ti2.github.io/";
|
|
description = "A software package for algebraic, geometric and combinatorial problems on linear spaces";
|
|
license = with licenses; [ gpl2Plus ];
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|