s/makeSearchPath "bin"/makeBinPath/g

This commit is contained in:
tv 2016-03-03 19:45:46 +01:00
parent 8c859335a8
commit ffa1a1e456
10 changed files with 12 additions and 12 deletions
krebs
3modules
5pkgs
builders.nix
cac-api
dic
fortclientsslvpn
get
git-hooks
github-hosts-sync
hashPassword
push

View file

@ -400,7 +400,7 @@ let
#! /bin/sh
set -euf
PATH=${makeSearchPath "bin" (with pkgs; [
PATH=${makeBinPath (with pkgs; [
coreutils
git
gnugrep
@ -451,7 +451,7 @@ let
#! /bin/sh
set -euf
PATH=${makeSearchPath "bin" (with pkgs; [
PATH=${makeBinPath (with pkgs; [
coreutils
findutils
gawk
@ -511,7 +511,7 @@ let
#! /bin/sh
set -euf
PATH=${makeSearchPath "bin" (with pkgs; [
PATH=${makeBinPath (with pkgs; [
coreutils # env
git
systemd

View file

@ -29,7 +29,7 @@ rec {
execveBin = name: cfg: execve name (cfg // { destination = "/bin/${name}"; });
writeC = name: { destination ? "" }: src: pkgs.runCommand name {} ''
PATH=${makeSearchPath "bin" (with pkgs; [
PATH=${makeBinPath (with pkgs; [
binutils
coreutils
gcc

View file

@ -18,7 +18,7 @@ stdenv.mkDerivation {
mkdir -p $out/bin
{ cat <<\EOF
#! ${dash}/bin/dash
export PATH=${stdenv.lib.makeSearchPath "bin" [
export PATH=${stdenv.lib.makeBinPath [
bc
coreutils
curl

View file

@ -16,7 +16,7 @@ stdenv.mkDerivation {
installPhase =
let
path = stdenv.lib.makeSearchPath "bin" [
path = stdenv.lib.makeBinPath [
coreutils
curl
gnused

View file

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [ makeWrapper ];
binPath = lib.makeSearchPath "bin" [
binPath = lib.makeBinPath [
coreutils
gawk
];

View file

@ -16,7 +16,7 @@ stdenv.mkDerivation {
installPhase =
let
path = stdenv.lib.makeSearchPath "bin" [
path = stdenv.lib.makeBinPath [
coreutils
gnugrep
gnused

View file

@ -12,7 +12,7 @@ let
#! /bin/sh
set -euf
export PATH=${makeSearchPath "bin" (with pkgs; [
export PATH=${makeBinPath (with pkgs; [
coreutils
git
gnused

View file

@ -17,7 +17,7 @@ stdenv.mkDerivation {
installPhase =
let
ca-bundle = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
path = stdenv.lib.makeSearchPath "bin" (with pkgs; [
path = stdenv.lib.makeBinPath (with pkgs; [
coreutils
findutils
git

View file

@ -5,7 +5,7 @@ pkgs.writeScriptBin "hashPassword" ''
# usage: hashPassword
set -euf
export PATH=${lib.makeSearchPath "bin" (with pkgs; [
export PATH=${lib.makeBinPath (with pkgs; [
coreutils
mkpasswd
openssl

View file

@ -25,7 +25,7 @@ stdenv.mkDerivation {
installPhase =
let
path = lib.makeSearchPath "bin" [
path = lib.makeBinPath [
coreutils
git
gnumake