summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2018-10-12 11:02:37 +0000
committerGitHub <noreply@github.com>2018-10-12 11:02:37 +0000
commitb8e1e564101486af8b1cd74bef8f1266e3b0a85f (patch)
tree2f01d8f70d2325f1beb20c0c208592a502ff5ddc /pkgs/tools/text
parent2434a2ee3a2920f98162e86e35a23d071041cf55 (diff)
downloadnixlib-b8e1e564101486af8b1cd74bef8f1266e3b0a85f.tar
nixlib-b8e1e564101486af8b1cd74bef8f1266e3b0a85f.tar.gz
nixlib-b8e1e564101486af8b1cd74bef8f1266e3b0a85f.tar.bz2
nixlib-b8e1e564101486af8b1cd74bef8f1266e3b0a85f.tar.lz
nixlib-b8e1e564101486af8b1cd74bef8f1266e3b0a85f.tar.xz
nixlib-b8e1e564101486af8b1cd74bef8f1266e3b0a85f.tar.zst
nixlib-b8e1e564101486af8b1cd74bef8f1266e3b0a85f.zip
dos2unix: fix cross build
Diffstat (limited to 'pkgs/tools/text')
-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;