nix-helpers: 43c601f3a49a3002dc60289dbcd4a963e263b926

     1: {
     2:   addPathToStore,
     3:   hello,
     4:   writeScript,
     5: }:
     6: 
     7: {
     8:   self = addPathToStore ../addPathToStore/default.nix;
     9:   dir = addPathToStore ./..;
    10:   dirEntry = addPathToStore (./.. + "/addPathToStore/default.nix");
    11:   dodgyName = addPathToStore (./.. + "/attrsToDirs'/default.nix");
    12:   storePath = addPathToStore "${hello}";
    13:   storeEntry = addPathToStore "${hello}/bin/hello";
    14:   dodgyStore = addPathToStore "${./..}/attrsToDirs'/default.nix";
    15:   notBuilt = with { f = writeScript "test-file" "1234"; }; addPathToStore "${f}";
    16: }

Generated by git2html.