nix-helpers: 8cc3cdd565deea44d54f9edee95e545a58dbc7ba

     1: # Like fetchgit, but doesn't check against an expected hash. Useful if the
     2: # commit ID is generated dynamically.
     3: { fetchgit, unfix }:
     4: 
     5: with builtins;
     6: args:
     7: unfix (fetchgit (args // {
     8:   # Use a dummy hash, to appease fetchgit's assertions
     9:   sha256 = hashString "sha256" args.url;
    10: }))

Generated by git2html.