about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/aspcud/default.nix
blob: a50bc311f24795cf849d859a15f2ca6ca8eed65b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchzip
, boost, clasp, cmake, gringo, re2c
}:

stdenv.mkDerivation rec {
  version = "1.9.5";
  pname = "aspcud";

  src = fetchzip {
    url = "https://github.com/potassco/aspcud/archive/v${version}.tar.gz";
    sha256 = "sha256-d04GPMoz6PMGq6iiul0zT1C9Mljdl9uJJ2C8MIwcmaw=";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ boost clasp gringo re2c ];

  cmakeFlags = [
    "-DCMAKE_BUILD_TYPE=Release"
    "-DASPCUD_GRINGO_PATH=${gringo}/bin/gringo"
    "-DASPCUD_CLASP_PATH=${clasp}/bin/clasp"
  ];

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