summary refs log tree commit diff
path: root/lib/strings.nix
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2018-07-22 02:03:24 +0000
committerMatthew Bauer <mjbauer95@gmail.com>2018-07-21 22:03:24 -0400
commitcc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16 (patch)
tree5f1c203e608071455dbbda699f52730bd4fbf058 /lib/strings.nix
parentb6704130b426eb30c10424ad84b0e7b8f83a1e0f (diff)
downloadnixpkgs-cc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16.tar
nixpkgs-cc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16.tar.gz
nixpkgs-cc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16.tar.bz2
nixpkgs-cc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16.tar.lz
nixpkgs-cc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16.tar.xz
nixpkgs-cc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16.tar.zst
nixpkgs-cc55a3ebcbf7ae1afb77dcf6b1c7f6c0deb68e16.zip
treewide: fix build with disallowed aliases (#43872)
fixes build with disallowed aliases
Diffstat (limited to 'lib/strings.nix')
-rw-r--r--lib/strings.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strings.nix b/lib/strings.nix
index e09ec42bfea..7cd09a10939 100644
--- a/lib/strings.nix
+++ b/lib/strings.nix
@@ -121,7 +121,7 @@ rec {
 
      Example:
        pkgs = import <nixpkgs> { }
-       makePerlPath [ pkgs.perlPackages.NetSMTP ]
+       makePerlPath [ pkgs.perlPackages.libnet ]
        => "/nix/store/n0m1fk9c960d8wlrs62sncnadygqqc6y-perl-Net-SMTP-1.25/lib/perl5/site_perl"
   */
   makePerlPath = makeSearchPathOutput "lib" "lib/perl5/site_perl";