mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
flintqs: init at 1.0
This commit is contained in:
parent
d0d7894f75
commit
b74e884aab
2 changed files with 42 additions and 0 deletions
40
pkgs/development/libraries/science/math/flintqs/default.nix
Normal file
40
pkgs/development/libraries/science/math/flintqs/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
, gmp
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "1.0";
|
||||||
|
pname = "flintqs";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sagemath";
|
||||||
|
repo = "FlintQS";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1f0lnayz6j6qgasx8pbq61d2fqam0wwhsmh6h15l4vq58l1vvbwj";
|
||||||
|
};
|
||||||
|
|
||||||
|
preAutoreconf = ''
|
||||||
|
touch ChangeLog
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gmp
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/sagemath/FlintQS;
|
||||||
|
description = "Highly optimized multi-polynomial quadratic sieve for integer factorization";
|
||||||
|
license = with licenses; [ gpl2 ];
|
||||||
|
maintainers = with maintainers; [ timokau ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -19864,6 +19864,8 @@ with pkgs;
|
||||||
|
|
||||||
cliquer = callPackage ../development/libraries/science/math/cliquer { };
|
cliquer = callPackage ../development/libraries/science/math/cliquer { };
|
||||||
|
|
||||||
|
flintqs = callPackage ../development/libraries/science/math/flintqs { };
|
||||||
|
|
||||||
jags = callPackage ../applications/science/math/jags { };
|
jags = callPackage ../applications/science/math/jags { };
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue