Revert "util-linux: also downgrade static builds already"

This reverts commit 15d8d27bd6.

Too many issues with 2.40 for now — we're reverting to 2.39.
This commit is contained in:
Alyssa Ross
2024-05-22 18:28:24 +02:00
parent 31311bf691
commit d2b0bf5658

View File

@@ -22,7 +22,7 @@
let
# Temporarily avoid applying the patches on systems where already we have binaries
# (in particular x86_64-linux and aarch64-linux) as the package is a huge rebuild there.
avoidRebuild = with stdenv.hostPlatform; isLinux && is64bit && !isStatic;
avoidRebuild = stdenv.isLinux && stdenv.is64bit;
in
stdenv.mkDerivation rec {
pname = "util-linux" + lib.optionalString (!nlsSupport && !ncursesSupport && !systemdSupport) "-minimal";