3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
9 lines
241 B
Nix
9 lines
241 B
Nix
{stdenv, fetchurl, ocaml, perl}: stdenv.mkDerivation {
|
|
name = "cil-1.3.2";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/cil-1.3.2.tar.gz;
|
|
md5 = "aba80dd700fcb1411598670cc36a9573";
|
|
};
|
|
buildInputs = [ocaml perl];
|
|
}
|