nixpkgs/pkgs/development/libraries/cil-aterm/default.nix
Mart Kolthof 1a496e77c8 changed cil from version 1.3.3 to 1.3.4
svn path=/nixpkgs/trunk/; revision=4552
2006-01-16 10:09:55 +00:00

13 lines
349 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 = [ ocaml perl ];
inherit ocaml perl;
}