summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-11-28 11:59:05 -0600
committerGitHub <noreply@github.com>2018-11-28 11:59:05 -0600
commitc315b9ec52fa209a65a8be4b37fb7296e0e42fa7 (patch)
tree5ed4b44ee8e17b834e6f2aee50dbfb0bf864a706
parentc94162dbec9bd231883ba3268a239d28657ce6d6 (diff)
parent468d1595f820e572f6ae0d70d09c936f4eb47a7d (diff)
downloadnixpkgs-c315b9ec52fa209a65a8be4b37fb7296e0e42fa7.tar
nixpkgs-c315b9ec52fa209a65a8be4b37fb7296e0e42fa7.tar.gz
nixpkgs-c315b9ec52fa209a65a8be4b37fb7296e0e42fa7.tar.bz2
nixpkgs-c315b9ec52fa209a65a8be4b37fb7296e0e42fa7.tar.lz
nixpkgs-c315b9ec52fa209a65a8be4b37fb7296e0e42fa7.tar.xz
nixpkgs-c315b9ec52fa209a65a8be4b37fb7296e0e42fa7.tar.zst
nixpkgs-c315b9ec52fa209a65a8be4b37fb7296e0e42fa7.zip
Merge pull request #51118 from bennofs/fix-mkpasswd
mkpasswd: fix cross compilation
-rw-r--r--pkgs/tools/security/mkpasswd/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/security/mkpasswd/default.nix b/pkgs/tools/security/mkpasswd/default.nix
index b8da305c36d..3d30fef02e2 100644
--- a/pkgs/tools/security/mkpasswd/default.nix
+++ b/pkgs/tools/security/mkpasswd/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation {
 
   src = whois.src;
 
-  buildInputs = [ perl ];
+  nativeBuildInputs = [ perl ];
 
   preConfigure = whois.preConfigure;
   buildPhase = "make mkpasswd";