about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/logic/clprover/clprover.nix
blob: ae57724e4f88d7f740e55ddac80de5bddd53f7e8 (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
{ stdenv, fetchzip }:

stdenv.mkDerivation rec {
  name = "clprover-${version}";
  version = "1.0.3";

  src = fetchzip {
    url = "http://cgi.csc.liv.ac.uk/~ullrich/CLProver++/CLProver++-v1.0.3-18-04-2015.zip";
    sha256 = "10kmlg4m572qwfzi6hkyb0ypb643xw8sfb55xx7866lyh37w1q3s";
    stripRoot = false;
  };

  installPhase = ''
    mkdir $out
    cp -r bin $out/bin
    mkdir -p $out/share/clprover
    cp -r examples $out/share/clprover/examples
  '';

  meta = with stdenv.lib; {
    description = "Resolution-based theorem prover for Coalition Logic implemented in C++";
    homepage = http://cgi.csc.liv.ac.uk/~ullrich/CLProver++/;
    license = licenses.gpl3; # Note that while the website states that it is GPLv2 but the file in the zip as well as the comments in the source state it is GPLv3
    maintainers = with maintainers; [ mgttlinger ];
    platforms = [ "x86_64-linux" ];
  };
}