51b04c1bf5
- Reverts the change to the monolithic `clingo` package in favor of the previous split between `clasp` and `gringo` since `opam` works with the latter but not (for some reason) with the former. - Adds explicit non-support for Python in `gringo`. This is not necessary for opam. - Forces usage of the `std::to_string` functions in the C++ standard library instead of the incomplete alternative implementations inside of the `gringo` sources.
41 lines
906 B
Nix
41 lines
906 B
Nix
{ stdenv, fetchurl,
|
|
bison, re2c, scons
|
|
}:
|
|
|
|
let
|
|
version = "4.5.4";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gringo-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/potassco/gringo/${version}/gringo-${version}-source.tar.gz";
|
|
sha256 = "16k4pkwyr2mh5w8j91vhxh9aff7f4y31npwf09w6f8q63fxvpy41";
|
|
};
|
|
|
|
buildInputs = [ bison re2c scons ];
|
|
|
|
patches = [
|
|
./gringo-4.5.4-cmath.patch
|
|
./gringo-4.5.4-to_string.patch
|
|
];
|
|
|
|
buildPhase = ''
|
|
scons WITH_PYTHON= --build-dir=release
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp build/release/gringo $out/bin/gringo
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Converts input programs with first-order variables to equivalent ground programs";
|
|
homepage = http://potassco.sourceforge.net/;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.hakuch ];
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|