blob: 2d1fc45871f3d4f94a07f4d4b75d0ba9e89b47c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
let
path = builtins.unsafeDiscardStringContext "${../dummy}";
storePath = builtins.storePath path;
in
{
plain = builtins.storePath path;
withSubPath = builtins.storePath (path + "/.keep");
}
|