nix-helpers: 333fb48794bdc33eda1cb9198d58b41b2fb7002f

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

Generated by git2html.