prover9: convert patchPhase to postPatch, cleanup meta

+5 -5
+5 -5
pkgs/applications/science/logic/prover9/default.nix
··· 11 11 12 12 hardeningDisable = [ "format" ]; 13 13 14 - patchPhase = '' 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 - meta = { 34 + meta = with lib; { 35 35 homepage = "https://www.cs.unm.edu/~mccune/mace4/"; 36 - license = "GPL"; 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 - platforms = lib.platforms.linux; 44 - maintainers = [ ]; 43 + platforms = platforms.linux; 44 + maintainers = with maintainers; [ ]; 45 45 }; 46 46 }