proverif: 2.02pl1 → 2.03

Do not build `proverif_interact` (that was not installed).
This commit is contained in:
Vincent Laporte 2021-11-02 17:04:59 +01:00 committed by Vincent Laporte
parent ddf89d7d96
commit b42501e1e7

View file

@ -2,28 +2,28 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "proverif"; pname = "proverif";
version = "2.02pl1"; version = "2.03";
src = fetchurl { src = fetchurl {
url = "http://prosecco.gforge.inria.fr/personal/bblanche/proverif/proverif${version}.tar.gz"; url = "https://bblanche.gitlabpages.inria.fr/proverif/proverif${version}.tar.gz";
sha256 = "1jmzfpx0hdgfmkq0jp6i3k5av9xxgndjaj743wfy37svn0ga4jjx"; sha256 = "sha256:1q5mp9il09jylimcaqczb3kh34gb5px88js127gxv0jj5b4bqfc7";
}; };
buildInputs = with ocamlPackages; [ ocaml findlib lablgtk ]; buildInputs = with ocamlPackages; [ ocaml findlib ];
buildPhase = "./build"; buildPhase = "./build -nointeract";
installPhase = '' installPhase = ''
mkdir -p $out/bin runHook preInstall
cp ./proverif $out/bin install -D -t $out/bin proverif proveriftotex
cp ./proveriftotex $out/bin
install -D -t $out/share/emacs/site-lisp/ emacs/proverif.el install -D -t $out/share/emacs/site-lisp/ emacs/proverif.el
runHook postInstall
''; '';
meta = { meta = {
description = "Cryptographic protocol verifier in the Dolev-Yao model"; description = "Cryptographic protocol verifier in the formal model";
homepage = "https://prosecco.gforge.inria.fr/personal/bblanche/proverif/"; homepage = "https://bblanche.gitlabpages.inria.fr/proverif/";
license = lib.licenses.gpl2; license = lib.licenses.gpl2;
platforms = lib.platforms.unix; platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.thoughtpolice ]; maintainers = with lib.maintainers; [ thoughtpolice vbgl ];
}; };
} }