mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
glucose, glucose-syrup: init at 4.0
This commit is contained in:
parent
22a7f3a849
commit
8f84a5cb08
3 changed files with 53 additions and 0 deletions
25
pkgs/applications/science/logic/glucose/default.nix
Normal file
25
pkgs/applications/science/logic/glucose/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl, zlib }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "glucose-${version}";
|
||||
version = "4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.labri.fr/perso/lsimon/downloads/softwares/glucose-syrup.tgz";
|
||||
sha256 = "0bq5l2jabhdfhng002qfk0mcj4pfi1v5853x3c7igwfrgx0jmfld";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
sourceRoot = "glucose-syrup/simp";
|
||||
makeFlags = [ "r" ];
|
||||
installPhase = ''
|
||||
install -Dm0755 glucose_release $out/bin/glucose
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Modern, parallel SAT solver (sequential version)";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
};
|
||||
}
|
25
pkgs/applications/science/logic/glucose/syrup.nix
Normal file
25
pkgs/applications/science/logic/glucose/syrup.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl, zlib }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "glucose-syrup-${version}";
|
||||
version = "4.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.labri.fr/perso/lsimon/downloads/softwares/glucose-syrup.tgz";
|
||||
sha256 = "0bq5l2jabhdfhng002qfk0mcj4pfi1v5853x3c7igwfrgx0jmfld";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
sourceRoot = "glucose-syrup/parallel";
|
||||
makeFlags = [ "r" ];
|
||||
installPhase = ''
|
||||
install -Dm0755 glucose-syrup_release $out/bin/glucose-syrup
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Modern, parallel SAT solver (parallel version)";
|
||||
license = licenses.unfreeRedistributable;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ gebner ];
|
||||
};
|
||||
}
|
|
@ -16230,6 +16230,9 @@ in
|
|||
|
||||
ginac = callPackage ../applications/science/math/ginac { };
|
||||
|
||||
glucose = callPackage ../applications/science/logic/glucose { };
|
||||
glucose-syrup = callPackage ../applications/science/logic/glucose/syrup.nix { };
|
||||
|
||||
hol = callPackage ../applications/science/logic/hol { };
|
||||
|
||||
hol_light = callPackage ../applications/science/logic/hol_light {
|
||||
|
|
Loading…
Reference in a new issue