1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/by-name/ms/msolve/package.nix
2024-08-01 06:36:41 +00:00

46 lines
799 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, flint
, gmp
, mpfr
}:
stdenv.mkDerivation (finalAttrs: {
pname = "msolve";
version = "0.7.1";
src = fetchFromGitHub {
owner = "algebraic-solving";
repo = "msolve";
rev = "v${finalAttrs.version}";
hash = "sha256-f1AtZ0tyHg3fqz44GK7eCsye+wiKeBbpKK9JWXpV/tk=";
};
postPatch = ''
patchShebangs .
'';
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
flint
gmp
mpfr
];
doCheck = true;
meta = with lib; {
description = "Library for polynomial system solving through algebraic methods";
mainProgram = "msolve";
homepage = "https://msolve.lip6.fr";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ wegank ];
platforms = platforms.unix;
};
})