mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
util-linux-ng: prepare expression for the addition of perl as a buildInput
The chkdupexe utility requires perl. We cannot change the expression, though, without triggering a re-build of almost all of stdenv, so for the time being I'm making Perl an optional build input that is disabled by default. svn path=/nixpkgs/trunk/; revision=27681
This commit is contained in:
parent
f15dca4c9c
commit
720e3518c5
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, ncurses ? null }:
|
||||
{ stdenv, fetchurl, ncurses ? null, perl ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "util-linux-ng-2.18";
|
||||
|
@ -19,5 +19,6 @@ stdenv.mkDerivation rec {
|
|||
${if ncurses == null then "--without-ncurses" else ""}
|
||||
'';
|
||||
|
||||
buildInputs = stdenv.lib.optional (ncurses != null) ncurses;
|
||||
buildInputs = stdenv.lib.optional (ncurses != null) ncurses
|
||||
++ stdenv.lib.optional (perl != null) perl;
|
||||
}
|
||||
|
|
|
@ -5663,6 +5663,7 @@ let
|
|||
|
||||
utillinuxng = callPackage ../os-specific/linux/util-linux-ng {
|
||||
ncurses = null;
|
||||
perl = null;
|
||||
};
|
||||
|
||||
utillinuxngCurses = utillinuxng.override {
|
||||
|
|
Loading…
Reference in a new issue