magic-nix-cache-action/.github/workflows/cache-tester.nix

11 lines
170 B
Nix
Raw Normal View History

{ seed }:
derivation {
name = "cache-test";
system = builtins.currentSystem;
builder = "/bin/sh";
args = [ "-euxc" "echo \"$seed\" > $out" ];
inherit seed;
}