Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
892 B
Nix
49 lines
892 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
boost,
|
|
catch2,
|
|
cmake,
|
|
clingo,
|
|
re2c,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.9.6";
|
|
pname = "aspcud";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "potassco";
|
|
repo = "aspcud";
|
|
rev = "v${version}";
|
|
hash = "sha256-PdRfpmH7zF5dn+feoijtzdSUjaYhjHwyAUfuYoWCL9E=";
|
|
};
|
|
|
|
postPatch = ''
|
|
cp ${catch2}/include/catch2/catch.hpp libcudf/tests/catch.hpp
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [
|
|
boost
|
|
clingo
|
|
re2c
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DASPCUD_GRINGO_PATH=${clingo}/bin/gringo"
|
|
"-DASPCUD_CLASP_PATH=${clingo}/bin/clasp"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Solver for package problems in CUDF format using ASP";
|
|
homepage = "https://potassco.org/aspcud/";
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.hakuch ];
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|