4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
27 lines
883 B
Nix
27 lines
883 B
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "clprover";
|
|
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 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" ];
|
|
};
|
|
}
|