forked from lix-project/lix
10 lines
194 B
Nix
10 lines
194 B
Nix
|
with import ./lib.nix;
|
||
|
|
||
|
let
|
||
|
str = builtins.hashString "sha256" "test";
|
||
|
in
|
||
|
builtins.zipAttrsWith
|
||
|
(n: v: { inherit n v; })
|
||
|
(map (n: { ${builtins.substring n 1 str} = n; })
|
||
|
(range 0 31))
|