commit
fb5815badf
@ -1,23 +1,26 @@
|
|||||||
{stdenv, fetchurl, cmake}:
|
{ stdenv, fetchzip, cmake }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
pname = "clingo";
|
pname = "clingo";
|
||||||
version = "5.2.2";
|
version = "5.2.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchzip {
|
||||||
url = "https://github.com/potassco/clingo/releases/v${version}.tar.gz";
|
url = "https://github.com/potassco/clingo/archive/v${version}.tar.gz";
|
||||||
sha256 = "1kxzb385g8p9mqm1x9wvjrigifa09w6vj0wl7kradibm5qagh7ns";
|
sha256 = "04rjwpna37gzm8vxr09z3z6ay8y8cxbjd8lga7xvqfpn2l178zjm";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [];
|
buildInputs = [];
|
||||||
nativeBuildInputs = [cmake];
|
nativeBuildInputs = [cmake];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DCLINGO_BUILD_WITH_PYTHON=OFF" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = "ASP system to ground and solve logic programs";
|
description = "ASP system to ground and solve logic programs";
|
||||||
license = stdenv.lib.licenses.mit;
|
license = stdenv.lib.licenses.mit;
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
homepage = "https://potassco.org/";
|
homepage = "https://potassco.org/";
|
||||||
downloadPage = "https://github.com/potassco/clingo/releases/";
|
downloadPage = "https://github.com/potassco/clingo/releases/";
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user