Skip to content

Instantly share code, notes, and snippets.

@colemickens
Created June 29, 2020 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colemickens/729328194edc9fc0edeb0e2c693893b4 to your computer and use it in GitHub Desktop.
Save colemickens/729328194edc9fc0edeb0e2c693893b4 to your computer and use it in GitHub Desktop.
function nixbuild() {
t="$(mktemp -d)"
link="${t}/out"
nix build --out-link "${link}" "${@}"
tl="$(readlink -f ${link})";
rm -rf "${t}"
echo -e "${tl}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment