mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
58 lines
1.6 KiB
Nix
58 lines
1.6 KiB
Nix
{ lib, buildDotnetModule, fetchFromGitHub, z3 }:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "Boogie";
|
|
version = "3.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boogie-org";
|
|
repo = "boogie";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-dMJ6A2ggBb20vuHL1g/Zx3pl9tXE8oayMGOqpChcg2U=";
|
|
};
|
|
|
|
projectFile = [ "Source/Boogie.sln" ];
|
|
nugetDeps = ./deps.nix;
|
|
|
|
executables = [ "BoogieDriver" ];
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix PATH : ${z3}/bin"
|
|
];
|
|
|
|
postInstall = ''
|
|
# so that this derivation can be used as a vim plugin to install syntax highlighting
|
|
vimdir=$out/share/vim-plugins/boogie
|
|
install -Dt $vimdir/syntax/ Util/vim/syntax/boogie.vim
|
|
mkdir $vimdir/ftdetect
|
|
echo 'au BufRead,BufNewFile *.bpl set filetype=boogie' > $vimdir/ftdetect/bpl.vim
|
|
mkdir -p $out/share/nvim
|
|
ln -s $out/share/vim-plugins/boogie $out/share/nvim/site
|
|
'';
|
|
|
|
postFixup = ''
|
|
ln -s "$out/bin/BoogieDriver" "$out/bin/boogie"
|
|
rm -f $out/bin/{Microsoft,NUnit3,System}.* "$out/bin"/*Tests
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
$out/bin/boogie ${./install-check-file.bpl}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Intermediate verification language";
|
|
homepage = "https://github.com/boogie-org/boogie";
|
|
longDescription = ''
|
|
Boogie is an intermediate verification language (IVL), intended as a
|
|
layer on which to build program verifiers for other languages.
|
|
|
|
This derivation may be used as a vim plugin to provide syntax highlighting.
|
|
'';
|
|
license = licenses.mspl;
|
|
maintainers = [ maintainers.taktoa ];
|
|
platforms = with platforms; (linux ++ darwin);
|
|
};
|
|
}
|
|
|