s/makeSearchPath "bin"/makeBinPath/g
This commit is contained in:
parent
8c859335a8
commit
ffa1a1e456
krebs
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
|||
|
||||
installPhase =
|
||||
let
|
||||
path = stdenv.lib.makeSearchPath "bin" [
|
||||
path = stdenv.lib.makeBinPath [
|
||||
coreutils
|
||||
curl
|
||||
gnused
|
||||
|
|
|
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
binPath = lib.makeSearchPath "bin" [
|
||||
binPath = lib.makeBinPath [
|
||||
coreutils
|
||||
gawk
|
||||
];
|
||||
|
|
|
@ -16,7 +16,7 @@ stdenv.mkDerivation {
|
|||
|
||||
installPhase =
|
||||
let
|
||||
path = stdenv.lib.makeSearchPath "bin" [
|
||||
path = stdenv.lib.makeBinPath [
|
||||
coreutils
|
||||
gnugrep
|
||||
gnused
|
||||
|
|
|
@ -12,7 +12,7 @@ let
|
|||
#! /bin/sh
|
||||
set -euf
|
||||
|
||||
export PATH=${makeSearchPath "bin" (with pkgs; [
|
||||
export PATH=${makeBinPath (with pkgs; [
|
||||
coreutils
|
||||
git
|
||||
gnused
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -25,7 +25,7 @@ stdenv.mkDerivation {
|
|||
|
||||
installPhase =
|
||||
let
|
||||
path = lib.makeSearchPath "bin" [
|
||||
path = lib.makeBinPath [
|
||||
coreutils
|
||||
git
|
||||
gnumake
|
||||
|
|
Loading…
Reference in a new issue