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:
parent
c68996f147
commit
ae23bb2bcc
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue