nixpkgs/pkgs/development/coq-modules/VST/default.nix

56 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, mkCoqDerivation, coq, compcert, ITree, version ? null }:
# A few modules that are not built and installed by default
# but that may be useful to some users.
# They depend on ITree.
let extra_floyd_files = [
"ASTsize.v"
"io_events.v"
"powerlater.v"
"printf.v"
"quickprogram.v"
];
in
2020-09-28 23:04:32 +02:00
2020-08-28 23:05:46 +02:00
with lib; mkCoqDerivation {
2020-09-28 23:04:32 +02:00
pname = "coq${coq.coq-version}-VST";
2020-08-28 23:05:46 +02:00
namePrefix = [];
displayVersion = { coq = false; };
owner = "PrincetonUniversity";
repo = "VST";
inherit version;
2021-04-30 08:49:33 +02:00
defaultVersion = with versions; switch coq.coq-version [
2021-06-16 07:50:50 +02:00
{ case = range "8.12" "8.13"; out = "2.8"; }
2021-04-30 08:49:33 +02:00
] null;
2021-06-16 07:50:50 +02:00
release."2.8".sha256 = "sha256-cyK88uzorRfjapNQ6XgQEmlbWnDsiyLve5po1VG52q0=";
2020-08-28 23:05:46 +02:00
releaseRev = v: "v${v}";
extraBuildInputs = [ ITree ];
2020-09-28 23:04:32 +02:00
propagatedBuildInputs = [ compcert ];
preConfigure = ''
patchShebangs util
substituteInPlace Makefile \
--replace 'FLOYD_FILES=' 'FLOYD_FILES= ${toString extra_floyd_files}'
'';
2020-09-28 23:04:32 +02:00
makeFlags = [
"BITSIZE=64"
"COMPCERT=inst_dir"
"COMPCERT_INST_DIR=${compcert.lib}/lib/coq/${coq.coq-version}/user-contrib/compcert"
"INSTALLDIR=$(out)/lib/coq/${coq.coq-version}/user-contrib/VST"
];
postInstall = ''
for d in msl veric floyd sepcomp progs64
do
cp -r $d $out/lib/coq/${coq.coq-version}/user-contrib/VST/
done
'';
meta = {
description = "Verified Software Toolchain";
homepage = "https://vst.cs.princeton.edu/";
inherit (compcert.meta) platforms;
};
}