mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-23 13:32:03 +01:00
11 lines
170 B
Nix
11 lines
170 B
Nix
|
{ seed }:
|
||
|
derivation {
|
||
|
name = "cache-test";
|
||
|
system = builtins.currentSystem;
|
||
|
|
||
|
builder = "/bin/sh";
|
||
|
args = [ "-euxc" "echo \"$seed\" > $out" ];
|
||
|
|
||
|
inherit seed;
|
||
|
}
|