Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

flintqs: init at 1.0

authored by

Timo Kaufmann and committed by
Matthew Justin Bauer
b74e884a d0d7894f

+42
+40
pkgs/development/libraries/science/math/flintqs/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , autoreconfHook 4 + , gmp 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + version = "1.0"; 9 + pname = "flintqs"; 10 + name = "${pname}-${version}"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "sagemath"; 14 + repo = "FlintQS"; 15 + rev = "v${version}"; 16 + sha256 = "1f0lnayz6j6qgasx8pbq61d2fqam0wwhsmh6h15l4vq58l1vvbwj"; 17 + }; 18 + 19 + preAutoreconf = '' 20 + touch ChangeLog 21 + ''; 22 + 23 + buildInputs = [ 24 + gmp 25 + ]; 26 + 27 + nativeBuildInputs = [ 28 + autoreconfHook 29 + ]; 30 + 31 + doCheck = true; 32 + 33 + meta = with stdenv.lib; { 34 + homepage = https://github.com/sagemath/FlintQS; 35 + description = "Highly optimized multi-polynomial quadratic sieve for integer factorization"; 36 + license = with licenses; [ gpl2 ]; 37 + maintainers = with maintainers; [ timokau ]; 38 + platforms = platforms.all; 39 + }; 40 + }
+2
pkgs/top-level/all-packages.nix
··· 19864 19865 cliquer = callPackage ../development/libraries/science/math/cliquer { }; 19866 19867 jags = callPackage ../applications/science/math/jags { }; 19868 19869
··· 19864 19865 cliquer = callPackage ../development/libraries/science/math/cliquer { }; 19866 19867 + flintqs = callPackage ../development/libraries/science/math/flintqs { }; 19868 + 19869 jags = callPackage ../applications/science/math/jags { }; 19870 19871