2006-08-24 03:48:49 -07:00
|
|
|
{ stdenv, fetchurl, ocaml3080, perl }:
|
2006-01-02 06:24:36 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-01-16 02:09:55 -08:00
|
|
|
name = "cil-aterm-1.3.4";
|
2006-01-02 06:24:36 -08:00
|
|
|
src = fetchurl {
|
2006-01-16 02:09:55 -08:00
|
|
|
url = http://manju.cs.berkeley.edu/cil/distrib/cil-1.3.4.tar.gz;
|
|
|
|
md5 = "a7fa54f19844a20562efd37f67c391da";
|
2006-01-02 06:24:36 -08:00
|
|
|
};
|
2006-01-16 02:09:55 -08:00
|
|
|
patches = [./cil-aterm-1.3.4.patch];
|
2006-08-23 09:10:27 -07:00
|
|
|
buildInputs = [ ocaml3080 perl ];
|
2006-08-24 06:32:56 -07:00
|
|
|
inherit ocaml3080 perl;
|
2006-01-02 06:24:36 -08:00
|
|
|
}
|