forked from mirrors/nixpkgs
b42501e1e7
Do not build `proverif_interact` (that was not installed).
30 lines
883 B
Nix
30 lines
883 B
Nix
{ lib, stdenv, fetchurl, ocamlPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "proverif";
|
|
version = "2.03";
|
|
|
|
src = fetchurl {
|
|
url = "https://bblanche.gitlabpages.inria.fr/proverif/proverif${version}.tar.gz";
|
|
sha256 = "sha256:1q5mp9il09jylimcaqczb3kh34gb5px88js127gxv0jj5b4bqfc7";
|
|
};
|
|
|
|
buildInputs = with ocamlPackages; [ ocaml findlib ];
|
|
|
|
buildPhase = "./build -nointeract";
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D -t $out/bin proverif proveriftotex
|
|
install -D -t $out/share/emacs/site-lisp/ emacs/proverif.el
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Cryptographic protocol verifier in the formal model";
|
|
homepage = "https://bblanche.gitlabpages.inria.fr/proverif/";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ thoughtpolice vbgl ];
|
|
};
|
|
}
|