mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-23 13:32:03 +01:00
21c3863b07
Co-authored-by: Zhaofeng Li <hello@zhaofeng.li>
10 lines
170 B
Nix
10 lines
170 B
Nix
{ seed }:
|
|
derivation {
|
|
name = "cache-test";
|
|
system = builtins.currentSystem;
|
|
|
|
builder = "/bin/sh";
|
|
args = [ "-euxc" "echo \"$seed\" > $out" ];
|
|
|
|
inherit seed;
|
|
}
|