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

let
  version = "3.1.4";
in

stdenv.mkDerivation {
  pname = "clasp";
  inherit version;

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