nixpkgs/pkgs/development/libraries/cil-aterm/default.nix
Mart Kolthof f201344599 Fixed typo.
svn path=/nixpkgs/trunk/; revision=7778
2007-01-23 16:03:11 +00:00

13 lines
358 B
Nix

{ stdenv, fetchurl, ocaml, perl }:
stdenv.mkDerivation {
name = "cil-aterm-1.3.4";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/cil/cil-1.3.4.tar.gz;
md5 = "a7fa54f19844a20562efd37f67c391da";
};
patches = [./cil-aterm-1.3.4.patch];
buildInputs = [ ocaml perl ];
inherit ocaml perl;
}