lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

treewide: Mass replace 'openssl}/bin' to refer the 'bin' output

+12 -12
+1 -1
nixos/modules/services/web-servers/apache-httpd/owncloud.nix
··· 333 333 334 334 'version' => '${config.package.version}', 335 335 336 - 'openssl' => '${pkgs.openssl}/bin/openssl' 336 + 'openssl' => '${pkgs.openssl.bin}/bin/openssl' 337 337 338 338 ); 339 339
+1 -1
nixos/modules/system/boot/luksroot.nix
··· 436 436 ${optionalString luks.yubikeySupport '' 437 437 copy_bin_and_libs ${pkgs.ykpers}/bin/ykchalresp 438 438 copy_bin_and_libs ${pkgs.ykpers}/bin/ykinfo 439 - copy_bin_and_libs ${pkgs.openssl}/bin/openssl 439 + copy_bin_and_libs ${pkgs.openssl.bin}/bin/openssl 440 440 441 441 cc -O3 -I${pkgs.openssl}/include -L${pkgs.openssl.out}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto 442 442 strip -s pbkdf2-sha512
+1 -1
pkgs/applications/networking/mailreaders/mailpile/default.nix
··· 21 21 22 22 postInstall = '' 23 23 wrapProgram $out/bin/mailpile \ 24 - --prefix PATH ":" "${gnupg1orig}/bin:${openssl}/bin" 24 + --prefix PATH ":" "${gnupg1orig}/bin:${openssl.bin}/bin" 25 25 ''; 26 26 27 27 meta = with stdenv.lib; {
+1 -1
pkgs/applications/virtualization/openstack/keystone.nix
··· 33 33 ldap ldappool webtest requests2 oslotest pep8 pymongo which 34 34 ]; 35 35 36 - makeWrapperArgs = ["--prefix PATH : '${openssl}/bin:$PATH'"]; 36 + makeWrapperArgs = ["--prefix PATH : '${openssl.bin}/bin:$PATH'"]; 37 37 38 38 postInstall = '' 39 39 # install .ini files
+1 -1
pkgs/development/libraries/opendkim/default.nix
··· 16 16 17 17 postInstall = '' 18 18 wrapProgram $out/sbin/opendkim-genkey \ 19 - --prefix PATH : ${openssl}/bin 19 + --prefix PATH : ${openssl.bin}/bin 20 20 ''; 21 21 22 22 meta = with stdenv.lib; {
+1 -1
pkgs/development/tools/sslmate/default.nix
··· 19 19 JSONPP 20 20 TermReadKey 21 21 ]}" \ 22 - --prefix PATH : "${openssl}/bin" 22 + --prefix PATH : "${openssl.bin}/bin" 23 23 ''; 24 24 25 25 meta = with stdenv.lib; {
+2 -2
pkgs/servers/http/nix-binary-cache/default.nix
··· 19 19 --replace @bzip2@ "${bzip2.bin}/bin" \ 20 20 --replace @gnused@ "${gnused}/bin" \ 21 21 --replace @gnugrep@ "${gnugrep}/bin" \ 22 - --replace @openssl@ "${openssl}/bin" \ 22 + --replace @openssl@ "${openssl.bin}/bin" \ 23 23 --replace @lighttpd@ "${lighttpd}/sbin" \ 24 24 --replace @iproute@ "${iproute}/sbin" \ 25 25 --replace "xXxXx" "xXxXx" ··· 36 36 --replace @bzip2@ "${bzip2.bin}/bin" \ 37 37 --replace @gnused@ "${gnused}/bin" \ 38 38 --replace @gnugrep@ "${gnugrep}/bin" \ 39 - --replace @openssl@ "${openssl}/bin" \ 39 + --replace @openssl@ "${openssl.bin}/bin" \ 40 40 --replace @lighttpd@ "${lighttpd}/sbin" \ 41 41 --replace @iproute@ "${iproute}/sbin" \ 42 42 --replace "xXxXx" "xXxXx"
+1 -1
pkgs/servers/shellinabox/default.nix
··· 22 22 substituteInPlace ./shellinabox/launcher.c --replace "/usr/games" "${openssh}/bin" 23 23 substituteInPlace ./shellinabox/service.c --replace "/bin/login" "${shadow}/bin/login" 24 24 substituteInPlace ./shellinabox/launcher.c --replace "/bin/login" "${shadow}/bin/login" 25 - substituteInPlace ./libhttp/ssl.c --replace "/usr/bin" "${openssl}/bin" 25 + substituteInPlace ./libhttp/ssl.c --replace "/usr/bin" "${openssl.bin}/bin" 26 26 ''; 27 27 28 28 postInstall = ''
+1 -1
pkgs/tools/networking/easyrsa/default.nix
··· 20 20 install -D -m755 easyrsa3/easyrsa $out/bin/easyrsa 21 21 substituteInPlace $out/bin/easyrsa \ 22 22 --subst-var out \ 23 - --subst-var-by openssl ${openssl}/bin/openssl 23 + --subst-var-by openssl ${openssl.bin}/bin/openssl 24 24 25 25 # Helper utility 26 26 cat > $out/bin/easyrsa-init <<EOF
+1 -1
pkgs/tools/virtualization/ec2-ami-tools/default.nix
··· 29 29 for i in $out/bin/*; do 30 30 wrapProgram $i \ 31 31 --set EC2_HOME $out \ 32 - --prefix PATH : ${ruby}/bin:${openssl}/bin 32 + --prefix PATH : ${ruby}/bin:${openssl.bin}/bin 33 33 done 34 34 35 35 sed -i 's|/bin/bash|${stdenv.shell}|' $out/lib/ec2/platform/base/pipeline.rb
+1 -1
pkgs/top-level/python-packages.nix
··· 279 279 doCheck = false; 280 280 281 281 patchPhase = '' 282 - substituteInPlace acme_tiny.py --replace "openssl" "${pkgs.openssl}/bin/openssl" 282 + substituteInPlace acme_tiny.py --replace "openssl" "${pkgs.openssl.bin}/bin/openssl" 283 283 ''; 284 284 285 285 installPhase = ''