Skip to content

Instantly share code, notes, and snippets.

@LnL7

LnL7/foo.nix Secret

Created June 22, 2018 13:25
Show Gist options
  • Save LnL7/12b22b67db146f7ae33ed484a16e0f64 to your computer and use it in GitHub Desktop.
Save LnL7/12b22b67db146f7ae33ed484a16e0f64 to your computer and use it in GitHub Desktop.
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
name = "foo";
unpackPhase = ":";
postHook = ''
fooPhase() {
echo "Whoops!" >&2
}
failureHooks+=(fooPhase)
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment