removed my string-with-deps probosal again.

There is no need to rewrite anything right now
added bvi one commit before this

svn path=/nixpkgs/trunk/; revision=10234
This commit is contained in:
Marc Weber 2008-01-20 22:49:58 +00:00
parent b4b61eccce
commit d894c2d144

View file

@ -1,52 +0,0 @@
# documentation see ../lib/strings-with-deps2.nix
# coverts Michael Raskin builder script snippets so that they can be used with createScript from strings-with-deps2.nix
raskin_defs : rec {
defAddToSearchPath = {
name = "defAddToSearchPath";
value = raskin_defs.defAddToSearchPath.text;
dependencies = [ "defNest" ];
};
defNest = {
name = "defNest";
value = raskin_defs.defNest.text;
};
minInit = {
name = "minInit";
value = raskin_defs.minInit.text;
dependencies = [ "defNest" "defAddToSearchPath" ];
};
addInputs = {
name = "addInputs";
value = raskin_defs.addInputs.text;
dependencies = [ "minInit" ];
};
toSrcDir = s : {
name = "toSrcDir";
value = (raskin_defs.toSrcDir s).text;
dependencies = [ "minInit" ];
};
doConfigure = {
name = "doConfigure";
value = raskin_defs.doConfigure.text;
dependencies = [ "minInit" "addInputs" "doUnpack" ];
};
doAutotools = {
name = "doAutotools";
value = raskin_defs.doAutotools.text;
dependencies = [ "minInit" "addInputs" "doUnpack" ];
};
doMake = {
name = "doMake";
value = raskin_defs.doMake.text;
dependencies = [ "minInit" "addInputs" "doUnpack" ];
};
# more have to be added here!
}