tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
prover9: convert patchPhase to postPatch, cleanup meta
Sandro Jäckel
4 years ago
11c55d06
c135faf6
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
logic
prover9
default.nix
+5
-5
pkgs/applications/science/logic/prover9/default.nix
···
11
11
12
12
hardeningDisable = [ "format" ];
13
13
14
14
-
patchPhase = ''
14
14
+
postPatch = ''
15
15
RM=$(type -tp rm)
16
16
MV=$(type -tp mv)
17
17
CP=$(type -tp cp)
···
31
31
cp bin/* $out/bin
32
32
'';
33
33
34
34
-
meta = {
34
34
+
meta = with lib; {
35
35
homepage = "https://www.cs.unm.edu/~mccune/mace4/";
36
36
-
license = "GPL";
36
36
+
license = license.gpl;
37
37
description = "Automated theorem prover for first-order and equational logic";
38
38
longDescription = ''
39
39
Prover9 is a resolution/paramodulation automated theorem prover
40
40
for first-order and equational logic. Prover9 is a successor of
41
41
the Otter Prover. This is the LADR command-line version.
42
42
'';
43
43
-
platforms = lib.platforms.linux;
44
44
-
maintainers = [ ];
43
43
+
platforms = platforms.linux;
44
44
+
maintainers = with maintainers; [ ];
45
45
};
46
46
}