python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / clasp / default.nix
blob401a2006c6f917e9856c354df75b266f58abf3f4
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "clasp";
5   version = "3.1.4";
7   src = fetchurl {
8     url = "mirror://sourceforge/project/potassco/clasp/${version}/clasp-${version}-source.tar.gz";
9     sha256 = "1zkjqc4gp4n9p2kf3k3z8x82g42any4p3shhhivny89z1jlxi9zn";
10   };
12   preConfigure = "patchShebangs ./configure.sh";
13   configureScript = "./configure.sh";
15   preBuild = "cd build/release";
17   installPhase = ''
18     mkdir -p $out/bin
19     cp bin/clasp $out/bin/clasp
20   '';
22   meta = with lib; {
23     description = "Answer set solver for (extended) normal and disjunctive logic programs";
24     homepage = "http://potassco.sourceforge.net/";
25     platforms = platforms.all;
26     maintainers = [ maintainers.hakuch ];
27     license = licenses.gpl2Plus;
28   };