Files
nixpkgs/pkgs/by-name/ut/util-linux/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

254 lines
8.2 KiB
Nix

{
lib,
stdenv,
fetchurl,
pkg-config,
autoconf,
automake116x,
zlib,
shadow,
capabilitiesSupport ? stdenv.hostPlatform.isLinux,
libcap_ng,
libxcrypt,
# Disable this by default because `mount` is setuid. However, we also support
# "dlopen" as a value here. Note that the nixpkgs setuid wrapper and ld-linux.so will filter out LD_LIBRARY_PATH
# if you set this to dlopen, so ensure you're accessing it without the wrapper if you depend on that.
cryptsetupSupport ? false,
cryptsetup,
ncursesSupport ? true,
ncurses,
pamSupport ? lib.meta.availableOn stdenv.hostPlatform pam,
pam,
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
systemd,
systemdLibs,
sqlite,
nlsSupport ? true,
translateManpages ? true,
po4a,
installShellFiles,
writeSupport ? stdenv.hostPlatform.isLinux,
shadowSupport ? stdenv.hostPlatform.isLinux,
coreutils,
# Doesn't build on Darwin, only makes sense on systems which have pam
withLastlog ? !stdenv.hostPlatform.isDarwin && lib.meta.availableOn stdenv.hostPlatform pam,
gitUpdater,
nixosTests,
}:
let
isMinimal = cryptsetupSupport == false && !nlsSupport && !ncursesSupport && !systemdSupport;
in
stdenv.mkDerivation (finalAttrs: {
pname = "util-linux" + lib.optionalString isMinimal "-minimal";
version = "2.41.1";
src = fetchurl {
url = "mirror://kernel/linux/utils/util-linux/v${lib.versions.majorMinor finalAttrs.version}/util-linux-${finalAttrs.version}.tar.xz";
hash = "sha256-vprZonb0MFq33S9SJci+H/VDUvVl/03t6WKMGqp97Fc=";
};
patches = [
./rtcwake-search-PATH-for-shutdown.patch
(fetchurl {
name = "bits-only-build-when-cpu_set_t-is-available.patch";
url = "https://lore.kernel.org/util-linux/20250501075806.88759-1-hi@alyssa.is/raw";
hash = "sha256-G7Cdv8636wJEjgt9am7PaDI8bpSF8sO9bFWEIiAL25A=";
})
];
# We separate some of the utilities into their own outputs. This
# allows putting together smaller systems depending on only part of
# the greater util-linux toolset.
# Compatibility is maintained by symlinking the binaries from the
# smaller outputs in the bin output.
outputs = [
"bin"
"dev"
"out"
"lib"
"man"
"login"
]
++ lib.optionals stdenv.hostPlatform.isLinux [
"mount"
"swap"
]
++ lib.optionals withLastlog [
"lastlog"
];
separateDebugInfo = true;
postPatch = ''
patchShebangs tests/run.sh tools/all_syscalls tools/all_errnos
substituteInPlace sys-utils/eject.c \
--replace-fail "/bin/umount" "$bin/bin/umount"
# fix `mount -t` tab completion
substituteInPlace bash-completion/{blkid,mount,umount} \
--replace-fail "/lib/modules" "/run/booted-system/kernel-modules/lib/modules"
''
+ lib.optionalString shadowSupport ''
substituteInPlace include/pathnames.h \
--replace-fail "/bin/login" "${shadow}/bin/login"
''
+ lib.optionalString stdenv.hostPlatform.isFreeBSD ''
substituteInPlace lib/c_strtod.c --replace-fail __APPLE__ __FreeBSD__
sed -E -i -e '/_POSIX_C_SOURCE/d' -e '/_XOPEN_SOURCE/d' misc-utils/hardlink.c
'';
# !!! It would be better to obtain the path to the mount helpers
# (/sbin/mount.*) through an environment variable, but that's
# somewhat risky because we have to consider that mount can setuid
# root...
configureFlags = [
"--localstatedir=/var"
"--disable-use-tty-group"
"--enable-fs-paths-default=/run/wrappers/bin:/run/current-system/sw/bin:/sbin"
"--disable-makeinstall-setuid"
"--disable-makeinstall-chown"
"--disable-su" # provided by shadow
(lib.enableFeature writeSupport "write")
(lib.enableFeature nlsSupport "nls")
(lib.withFeatureAs (cryptsetupSupport != false) "cryptsetup" (
if cryptsetupSupport == true then
"yes"
else if cryptsetupSupport == "dlopen" then
"dlopen"
else
throw "invalid cryptsetupSupport value: ${toString cryptsetupSupport}"
))
(lib.withFeature ncursesSupport "ncursesw")
(lib.withFeature systemdSupport "systemd")
(lib.withFeatureAs systemdSupport "systemdsystemunitdir" "${placeholder "bin"}/lib/systemd/system/")
(lib.withFeatureAs systemdSupport "tmpfilesdir" "${placeholder "out"}/lib/tmpfiles.d")
(lib.withFeatureAs systemdSupport "sysusersdir" "${placeholder "out"}/lib/sysusers.d")
(lib.enableFeature translateManpages "poman")
"SYSCONFSTATICDIR=${placeholder "lib"}/lib"
]
++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ "scanf_cv_type_modifier=ms" ]
++ lib.optionals stdenv.hostPlatform.isFreeBSD [
# These features are all disabled in the freebsd-ports distribution
"--disable-nls"
"--disable-ipcrm"
"--disable-ipcs"
]
++ lib.optionals (!withLastlog) [
"--disable-liblastlog2"
]
++ lib.optionals stdenv.hostPlatform.isStatic [
# Mandatory shared library.
"--disable-pam-lastlog2"
];
makeFlags = [
"usrbin_execdir=${placeholder "bin"}/bin"
"usrlib_execdir=${placeholder "lib"}/lib"
"usrsbin_execdir=${placeholder "bin"}/sbin"
];
nativeBuildInputs = [
autoconf
automake116x
installShellFiles
pkg-config
]
++ lib.optionals translateManpages [ po4a ]
++ lib.optionals (cryptsetupSupport == "dlopen") [ cryptsetup ];
buildInputs = [
zlib
libxcrypt
sqlite
]
++ lib.optionals (cryptsetupSupport == true) [ cryptsetup ]
++ lib.optionals pamSupport [ pam ]
++ lib.optionals capabilitiesSupport [ libcap_ng ]
++ lib.optionals ncursesSupport [ ncurses ]
++ lib.optionals systemdSupport [ systemdLibs ];
enableParallelBuilding = true;
postInstall = ''
moveToOutput sbin/nologin "$login"
moveToOutput sbin/sulogin "$login"
prefix=$login _moveSbin
ln -svf "$login/bin/"* $bin/bin/
ln -svf "$bin/bin/hexdump" "$bin/bin/hd"
ln -svf "$man/share/man/man1/hexdump.1" "$man/share/man/man1/hd.1"
installShellCompletion --bash bash-completion/*
''
+ lib.optionalString stdenv.hostPlatform.isLinux ''
moveToOutput bin/mount "$mount"
moveToOutput bin/umount "$mount"
ln -svf "$mount/bin/"* $bin/bin/
moveToOutput sbin/swapon "$swap"
moveToOutput sbin/swapoff "$swap"
prefix=$swap _moveSbin
ln -svf "$swap/bin/"* $bin/bin/
''
+ lib.optionalString withLastlog ''
${lib.optionalString (!stdenv.hostPlatform.isStatic) ''moveToOutput "lib/security" "$lastlog"''}
moveToOutput "lib/tmpfiles.d/lastlog2-tmpfiles.conf" "$lastlog"
moveToOutput "bin/lastlog2" "$lastlog"
ln -svf "$lastlog/bin/"* $bin/bin/
''
+ lib.optionalString (withLastlog && systemdSupport) ''
moveToOutput "lib/systemd/system/lastlog2-import.service" "$lastlog"
substituteInPlace $lastlog/lib/systemd/system/lastlog2-import.service \
--replace-fail "/usr/bin/mv" "${lib.getExe' coreutils "mv"}" \
--replace-fail "$bin/bin/lastlog2" "$lastlog/bin/lastlog2"
'';
doCheck = false; # "For development purpose only. Don't execute on production system!"
passthru = {
updateScript = gitUpdater {
# No nicer place to find latest release.
url = "https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git";
rev-prefix = "v";
ignoredVersions = "(-rc).*";
};
# encode upstream assumption to be used in man-db
# https://github.com/util-linux/util-linux/commit/8886d84e25a457702b45194d69a47313f76dc6bc
hasCol = stdenv.hostPlatform.libc == "glibc";
tests = {
inherit (nixosTests) pam-lastlog;
};
};
meta = {
homepage = "https://www.kernel.org/pub/linux/utils/util-linux/";
description = "Set of system utilities for Linux";
changelog = "https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v${lib.versions.majorMinor finalAttrs.version}/v${finalAttrs.version}-ReleaseNotes";
# https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/tree/README.licensing
license = with lib.licenses; [
gpl2Only
gpl2Plus
gpl3Plus
lgpl21Plus
bsd3
bsdOriginalUC
publicDomain
];
maintainers = with lib.maintainers; [ numinit ];
platforms = lib.platforms.unix;
pkgConfigModules = [
"blkid"
"fdisk"
"mount"
"smartcols"
"uuid"
];
priority = 6; # lower priority than coreutils ("kill") and shadow ("login" etc.) packages
};
})