summary refs log tree commit diff
path: root/pkgs/os-specific/linux/util-linux/default.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-10-05 13:06:01 +0000
committerAlyssa Ross <hi@alyssa.is>2021-10-05 13:11:01 +0000
commit5bd56cc23638a081692dddc13679e72f79aaccec (patch)
tree02812b203b3dcbb222c3d3095b43785c624692cf /pkgs/os-specific/linux/util-linux/default.nix
parent244799871a7842e5f24da0ce9b8a9d57198de1f8 (diff)
downloadnixpkgs-5bd56cc23638a081692dddc13679e72f79aaccec.tar
nixpkgs-5bd56cc23638a081692dddc13679e72f79aaccec.tar.gz
nixpkgs-5bd56cc23638a081692dddc13679e72f79aaccec.tar.bz2
nixpkgs-5bd56cc23638a081692dddc13679e72f79aaccec.tar.lz
nixpkgs-5bd56cc23638a081692dddc13679e72f79aaccec.tar.xz
nixpkgs-5bd56cc23638a081692dddc13679e72f79aaccec.tar.zst
nixpkgs-5bd56cc23638a081692dddc13679e72f79aaccec.zip
util-linux: remove unnecessary perl build input
This was probably needed for scriptrelay(1) before it was rewritten
from Perl to C in util-linux 2.14.  I've checked with Diffoscope that
after removing the build input, the result is bit-for-bit identical
except for the different prefix.
Diffstat (limited to 'pkgs/os-specific/linux/util-linux/default.nix')
-rw-r--r--pkgs/os-specific/linux/util-linux/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/util-linux/default.nix b/pkgs/os-specific/linux/util-linux/default.nix
index 73f321f2631..073f94267b7 100644
--- a/pkgs/os-specific/linux/util-linux/default.nix
+++ b/pkgs/os-specific/linux/util-linux/default.nix
@@ -1,5 +1,5 @@
 { lib, stdenv, fetchurl, pkg-config, zlib, shadow, libcap_ng
-, ncurses ? null, perl ? null, pam, systemd ? null, minimal ? false }:
+, ncurses ? null, pam, systemd ? null, minimal ? false }:
 
 stdenv.mkDerivation rec {
   pname = "util-linux";
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkg-config ];
   buildInputs =
     [ zlib pam libcap_ng ]
-    ++ lib.filter (p: p != null) [ ncurses systemd perl ];
+    ++ lib.filter (p: p != null) [ ncurses systemd ];
 
   doCheck = false; # "For development purpose only. Don't execute on production system!"