replace makeSearchPath tree-wise to take care of possible multiple outputs
This commit is contained in:
@@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
|
||||
'' else ""}
|
||||
'';
|
||||
|
||||
wrapperPath = with stdenv.lib; makeSearchPath "bin/" ([
|
||||
wrapperPath = with stdenv.lib; makeBinPath ([
|
||||
coreutils
|
||||
gnused
|
||||
getopt
|
||||
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
|
||||
cp -a $src/config.example $out/share/doc/rofi-pass/config.example
|
||||
'';
|
||||
|
||||
wrapperPath = with stdenv.lib; makeSearchPath "bin/" [
|
||||
wrapperPath = with stdenv.lib; makeBinPath [
|
||||
coreutils
|
||||
findutils
|
||||
gnugrep
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
, perl, pcscperl, Glib, Gtk2, Pango
|
||||
}:
|
||||
|
||||
let deps = lib.makeSearchPath "bin" [ wget coreutils ];
|
||||
let deps = lib.makeBinPath [ wget coreutils ];
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "pcsc-tools-1.4.25";
|
||||
|
||||
Reference in New Issue
Block a user