1a496e77c8
svn path=/nixpkgs/trunk/; revision=4552
13 lines
346 B
Nix
13 lines
346 B
Nix
{ stdenv, fetchurl, ocaml, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "cil-aterm-1.3.3";
|
|
src = fetchurl {
|
|
url = http://manju.cs.berkeley.edu/cil/distrib/cil-1.3.3.tar.gz;
|
|
md5 = "dafd350c154990728efb35a7073ca81a";
|
|
};
|
|
patches = [./atermprinter.patch];
|
|
buildInputs = [ ocaml perl ];
|
|
inherit ocaml perl;
|
|
}
|