Skip to content

Instantly share code, notes, and snippets.

@Mayeu
Last active November 13, 2015 15:25
Show Gist options
  • Save Mayeu/894f9cef5d9640579d3e to your computer and use it in GitHub Desktop.
Save Mayeu/894f9cef5d9640579d3e to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "minimal";
src = "./" ;
installPhase = ''
mkdir -p ${out}/test # <-- that's the bug, ${} is nix variable, out is not a nix variable
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment