1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

proverif: 1.97pl1 -> 2.00

This commit is contained in:
Vincent Laporte 2018-05-22 05:49:20 +00:00
parent c68996f147
commit ae23bb2bcc
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,15 +1,15 @@
{ stdenv, fetchurl, ocaml }:
{ stdenv, fetchurl, ocamlPackages }:
stdenv.mkDerivation rec {
name = "proverif-${version}";
version = "1.97pl1";
version = "2.00";
src = fetchurl {
url = "http://prosecco.gforge.inria.fr/personal/bblanche/proverif/proverif${version}.tar.gz";
sha256 = "1b0ji68crdli40a4z62gdq6fnygj3z2j63iaq4jki7wfc3nn3vgq";
sha256 = "0vjphj85ch9q39vc7sd6n4vxy5bplp017vlshk989yhfwb00r37y";
};
buildInputs = [ ocaml ];
buildInputs = with ocamlPackages; [ ocaml findlib lablgtk ];
buildPhase = "./build";
installPhase = ''