summary refs log tree commit diff
path: root/pkgs/tools/misc/clasp/default.nix
blob: 401a2006c6f917e9856c354df75b266f58abf3f4 (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
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "clasp";
  version = "3.1.4";

  src = fetchurl {
    url = "mirror://sourceforge/project/potassco/clasp/${version}/clasp-${version}-source.tar.gz";
    sha256 = "1zkjqc4gp4n9p2kf3k3z8x82g42any4p3shhhivny89z1jlxi9zn";
  };

  preConfigure = "patchShebangs ./configure.sh";
  configureScript = "./configure.sh";

  preBuild = "cd build/release";

  installPhase = ''
    mkdir -p $out/bin
    cp bin/clasp $out/bin/clasp
  '';

  meta = with lib; {
    description = "Answer set solver for (extended) normal and disjunctive logic programs";
    homepage = "http://potassco.sourceforge.net/";
    platforms = platforms.all;
    maintainers = [ maintainers.hakuch ];
    license = licenses.gpl2Plus;
  };
}