glucose, glucose-syrup: init at 4.0

This commit is contained in:
Gabriel Ebner 2016-06-21 13:26:51 +02:00
parent 22a7f3a849
commit 8f84a5cb08
3 changed files with 53 additions and 0 deletions

View 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 ];
};
}

View 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 ];
};
}

View file

@ -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 {