summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-10-12 14:19:32 +0100
committerGitHub <noreply@github.com>2018-10-12 14:19:32 +0100
commitefd6f7fbe2701c64a5fe4324ec2b02fa4e6e5ffa (patch)
treef1cd0b784d8966e9a3b0ad0465ac77dff5b860d0 /pkgs
parentaaadace9d1d25ed144f23d87485c4aa21891f36e (diff)
parentb8e1e564101486af8b1cd74bef8f1266e3b0a85f (diff)
downloadnixlib-efd6f7fbe2701c64a5fe4324ec2b02fa4e6e5ffa.tar
nixlib-efd6f7fbe2701c64a5fe4324ec2b02fa4e6e5ffa.tar.gz
nixlib-efd6f7fbe2701c64a5fe4324ec2b02fa4e6e5ffa.tar.bz2
nixlib-efd6f7fbe2701c64a5fe4324ec2b02fa4e6e5ffa.tar.lz
nixlib-efd6f7fbe2701c64a5fe4324ec2b02fa4e6e5ffa.tar.xz
nixlib-efd6f7fbe2701c64a5fe4324ec2b02fa4e6e5ffa.tar.zst
nixlib-efd6f7fbe2701c64a5fe4324ec2b02fa4e6e5ffa.zip
Merge pull request #48260 from volth/patch-262
dos2unix: fix cross build
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/text/dos2unix/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/dos2unix/default.nix b/pkgs/tools/text/dos2unix/default.nix
index 2db82c36a72a..dd0d1bbc9410 100644
--- a/pkgs/tools/text/dos2unix/default.nix
+++ b/pkgs/tools/text/dos2unix/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
     --replace /usr $out
     '';
 
-  buildInputs = [ perl gettext ];
+  nativeBuildInputs = [ perl gettext ];
 
   meta = with stdenv.lib; {
     homepage = http://waterlan.home.xs4all.nl/dos2unix.html;