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