Last active
January 18, 2022 18:09
-
-
Save t184256/808dd47e2f62f764291506c13c8700eb to your computer and use it in GitHub Desktop.
a flake breaking my hydra
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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