forked from mirrors/nixpkgs
* trying to keep to the standards
svn path=/nixpkgs/trunk/; revision=6226
This commit is contained in:
parent
9c67a8d113
commit
edefde9b2f
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, ocaml3080, perl }:
|
||||
{ stdenv, fetchurl, ocaml, perl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "cil-aterm-1.3.4";
|
||||
|
@ -7,6 +7,6 @@ stdenv.mkDerivation {
|
|||
md5 = "a7fa54f19844a20562efd37f67c391da";
|
||||
};
|
||||
patches = [./cil-aterm-1.3.4.patch];
|
||||
buildInputs = [ ocaml3080 perl ];
|
||||
inherit ocaml3080 perl;
|
||||
buildInputs = [ ocaml perl ];
|
||||
inherit ocaml perl;
|
||||
}
|
||||
|
|
|
@ -1043,7 +1043,8 @@ rec {
|
|||
};
|
||||
|
||||
cilaterm = (import ../development/libraries/cil-aterm) {
|
||||
inherit stdenv fetchurl ocaml3080 perl;
|
||||
ocaml = ocaml3080;
|
||||
inherit stdenv fetchurl perl;
|
||||
};
|
||||
|
||||
pcre = (import ../development/libraries/pcre) {
|
||||
|
|
Loading…
Reference in a new issue