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
57 lines
1.5 KiB
Nix
57 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, z3, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vampire";
|
|
version = "4.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vprover";
|
|
repo = "vampire";
|
|
rev = version;
|
|
sha256 = "0q9gqyq96amdnhxgwjyv0r2sxakikp3jvmizgj2h0spfz643p8db";
|
|
};
|
|
|
|
buildInputs = [ z3 zlib ];
|
|
|
|
makeFlags = [ "vampire_z3_rel" "CC:=$(CC)" "CXX:=$(CXX)" ];
|
|
|
|
patches = [
|
|
# https://github.com/vprover/vampire/pull/54
|
|
(fetchpatch {
|
|
name = "fix-apple-cygwin-defines.patch";
|
|
url = "https://github.com/vprover/vampire/pull/54.patch";
|
|
sha256 = "0i6nrc50wlg1dqxq38lkpx4rmfb3lf7s8f95l4jkvqp0nxa20cza";
|
|
})
|
|
# https://github.com/vprover/vampire/pull/55
|
|
(fetchpatch {
|
|
name = "fix-wait-any.patch";
|
|
url = "https://github.com/vprover/vampire/pull/55.patch";
|
|
sha256 = "1pwfpwpl23bqsgkmmvw6bnniyvp5j9v8l3z9s9pllfabnfcrcz9l";
|
|
})
|
|
# https://github.com/vprover/vampire/pull/56
|
|
(fetchpatch {
|
|
name = "fenv.patch";
|
|
url = "https://github.com/vprover/vampire/pull/56.patch";
|
|
sha256 = "0xl3jcyqmk146mg3qj5hdd0pbja6wbq3250zmfhbxqrjh40mm40g";
|
|
})
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
fixupPhase = ''
|
|
rm -rf z3
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -m0755 -D vampire_z3_rel* $out/bin/vampire
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://vprover.github.io/";
|
|
description = "The Vampire Theorem Prover";
|
|
platforms = platforms.unix;
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ gebner ];
|
|
};
|
|
}
|