mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
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:
parent
b4b61eccce
commit
d894c2d144
1 changed files with 0 additions and 52 deletions
|
@ -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!
|
||||
}
|
Loading…
Reference in a new issue