summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-08-10 14:22:25 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-08-10 14:23:31 +0200
commit46e52576705576c5c2e88a8fc77769d1fd682a8f (patch)
tree677a394bd59a4ca3b54510778f4dee019057edc6 /pkgs
parent4596251dd194cb34c83f02c152800deb7deb9f21 (diff)
parentcdfa550ca518105f44bda15339f6deddf7ff52b0 (diff)
downloadnixlib-46e52576705576c5c2e88a8fc77769d1fd682a8f.tar
nixlib-46e52576705576c5c2e88a8fc77769d1fd682a8f.tar.gz
nixlib-46e52576705576c5c2e88a8fc77769d1fd682a8f.tar.bz2
nixlib-46e52576705576c5c2e88a8fc77769d1fd682a8f.tar.lz
nixlib-46e52576705576c5c2e88a8fc77769d1fd682a8f.tar.xz
nixlib-46e52576705576c5c2e88a8fc77769d1fd682a8f.tar.zst
nixlib-46e52576705576c5c2e88a8fc77769d1fd682a8f.zip
Merge #44719: utillinux: fix build w/ncurses
This fixes a regression from f83b5e4.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/util-linux/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/util-linux/default.nix b/pkgs/os-specific/linux/util-linux/default.nix
index 1a7232afedb3..55673ccf0139 100644
--- a/pkgs/os-specific/linux/util-linux/default.nix
+++ b/pkgs/os-specific/linux/util-linux/default.nix
@@ -39,7 +39,7 @@ in stdenv.mkDerivation rec {
     "--disable-use-tty-group"
     "--enable-fs-paths-default=/run/wrappers/bin:/var/run/current-system/sw/bin:/sbin"
     "--disable-makeinstall-setuid" "--disable-makeinstall-chown"
-    (lib.withFeature (ncurses != null) "ncurses")
+    (lib.withFeature (ncurses != null) "ncursesw")
     (lib.withFeature (systemd != null) "systemd")
     (lib.withFeatureAs (systemd != null)
        "systemdsystemunitdir" "$bin/lib/systemd/system/")