Skip to content

Instantly share code, notes, and snippets.

@t184256
Last active January 18, 2022 18:09
Show Gist options
  • Save t184256/808dd47e2f62f764291506c13c8700eb to your computer and use it in GitHub Desktop.
Save t184256/808dd47e2f62f764291506c13c8700eb to your computer and use it in GitHub Desktop.
a flake breaking my hydra
{
description = "a broken flake to report a bug";
outputs = { self }: {
hydraJobs.test.x86_64-linux = derivation {
name = "test"; builder = "/bin/sh"; args = ["-c" "/bin/sh -c :> $out"];
system = "x86_64-linux";
__contentAddressed = true;
outputHashAlgo = "sha256"; outputHashMode = "recursive";
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment