nixpkgs/pkgs/development/libraries/cil-aterm/default.nix
Mart Kolthof a312ca7edd * Switching back to OCaml 3.08.0 to hopefully resolve compile errors
svn path=/nixpkgs/trunk/; revision=6215
2006-08-23 16:10:27 +00:00

13 lines
353 B
Nix

{ stdenv, fetchurl, ocaml, perl }:
stdenv.mkDerivation {
name = "cil-aterm-1.3.4";
src = fetchurl {
url = http://manju.cs.berkeley.edu/cil/distrib/cil-1.3.4.tar.gz;
md5 = "a7fa54f19844a20562efd37f67c391da";
};
patches = [./cil-aterm-1.3.4.patch];
buildInputs = [ ocaml3080 perl ];
inherit ocaml perl;
}