nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 12 lines 224 B view raw
1# shellcheck shell=bash 2# This setup hook add $out/bin to the PATH environment variable. 3 4export PATH 5 6addBinToPath () { 7 # shellcheck disable=SC2154 8 PATH="$out/bin:$PATH" 9 export PATH 10} 11 12postHooks+=(addBinToPath)