2019-05-14 01:20:56 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, pkgconfig, intltool, gperf, libcap
|
|
|
|
, curl, kmod, gnupg, gnutar, xz, pam, acl, libuuid, m4, e2fsprogs, utillinux, libffi
|
2018-02-11 23:43:24 +01:00
|
|
|
, glib, kbd, libxslt, coreutils, libgcrypt, libgpgerror, libidn2, libapparmor
|
2020-07-31 18:38:07 +02:00
|
|
|
, audit, lz4, bzip2, pcre2
|
2018-02-11 23:43:24 +01:00
|
|
|
, linuxHeaders ? stdenv.cc.libc.linuxHeaders
|
2017-03-31 07:34:55 +02:00
|
|
|
, iptables, gnu-efi, bashInteractive
|
2018-07-21 02:44:44 +02:00
|
|
|
, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45
|
2018-02-11 23:43:24 +01:00
|
|
|
, ninja, meson, python3Packages, glibcLocales
|
|
|
|
, patchelf
|
2020-03-07 23:47:22 +01:00
|
|
|
, substituteAll
|
2018-02-13 18:38:14 +01:00
|
|
|
, getent
|
2019-08-19 02:08:46 +02:00
|
|
|
, cryptsetup, lvm2
|
2018-02-25 15:07:14 +01:00
|
|
|
, buildPackages
|
2019-05-22 00:07:39 +02:00
|
|
|
, perl
|
2018-03-27 01:24:46 +02:00
|
|
|
, withSelinux ? false, libselinux
|
2018-09-03 20:09:27 +02:00
|
|
|
, withLibseccomp ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) libseccomp.meta.platforms, libseccomp
|
|
|
|
, withKexectools ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) kexectools.meta.platforms, kexectools
|
2012-06-06 18:07:30 +02:00
|
|
|
}:
|
2012-05-21 22:48:19 +02:00
|
|
|
|
2020-08-06 12:04:28 +02:00
|
|
|
let
|
2020-09-10 15:12:51 +02:00
|
|
|
version = "246.4";
|
2020-08-06 12:04:28 +02:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit version;
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "systemd";
|
2018-03-03 00:31:30 +01:00
|
|
|
|
2020-08-06 12:04:28 +02:00
|
|
|
# We use systemd/systemd-stable for src, and ship NixOS-specific patches inside nixpkgs directly
|
|
|
|
# This has proven to be less error-prone than the previous systemd fork.
|
2018-03-03 00:31:30 +01:00
|
|
|
src = fetchFromGitHub {
|
2020-01-26 14:56:41 +01:00
|
|
|
owner = "systemd";
|
|
|
|
repo = "systemd-stable";
|
2020-08-06 12:04:28 +02:00
|
|
|
rev = "v${version}";
|
2020-09-10 15:12:51 +02:00
|
|
|
sha256 = "0ns12w55yv680p4l7f2i9il7scdph7hips68d9k8cyvxk2w9xg0x";
|
2018-03-03 00:31:30 +01:00
|
|
|
};
|
|
|
|
|
2020-08-06 12:04:28 +02:00
|
|
|
# If these need to be regenerated, `git am path/to/00*.patch` them into a
|
|
|
|
# systemd worktree, rebase to the more recent systemd version, and export the
|
|
|
|
# patches again via `git format-patch v${version}`.
|
2020-01-26 14:56:41 +01:00
|
|
|
patches = [
|
|
|
|
./0001-Start-device-units-for-uninitialised-encrypted-devic.patch
|
2020-04-30 01:03:18 +02:00
|
|
|
./0002-Don-t-try-to-unmount-nix-or-nix-store.patch
|
|
|
|
./0003-Fix-NixOS-containers.patch
|
|
|
|
./0004-Look-for-fsck-in-the-right-place.patch
|
|
|
|
./0005-Add-some-NixOS-specific-unit-directories.patch
|
|
|
|
./0006-Get-rid-of-a-useless-message-in-user-sessions.patch
|
|
|
|
./0007-hostnamed-localed-timedated-disable-methods-that-cha.patch
|
|
|
|
./0008-Fix-hwdb-paths.patch
|
|
|
|
./0009-Change-usr-share-zoneinfo-to-etc-zoneinfo.patch
|
|
|
|
./0010-localectl-use-etc-X11-xkb-for-list-x11.patch
|
|
|
|
./0011-build-don-t-create-statedir-and-don-t-touch-prefixdi.patch
|
|
|
|
./0012-Install-default-configuration-into-out-share-factory.patch
|
|
|
|
./0013-inherit-systemd-environment-when-calling-generators.patch
|
|
|
|
./0014-add-rootprefix-to-lookup-dir-paths.patch
|
|
|
|
./0015-systemd-shutdown-execute-scripts-in-etc-systemd-syst.patch
|
|
|
|
./0016-systemd-sleep-execute-scripts-in-etc-systemd-system-.patch
|
|
|
|
./0017-kmod-static-nodes.service-Update-ConditionFileNotEmp.patch
|
|
|
|
./0018-path-util.h-add-placeholder-for-DEFAULT_PATH_NORMAL.patch
|
2020-01-26 14:56:41 +01:00
|
|
|
];
|
|
|
|
|
2020-03-07 23:47:22 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/basic/path-util.h --replace "@defaultPathNormal@" "${placeholder "out"}/bin/"
|
2020-06-08 02:25:01 +02:00
|
|
|
substituteInPlace src/boot/efi/meson.build \
|
|
|
|
--replace \
|
|
|
|
"find_program('ld'" \
|
|
|
|
"find_program('${stdenv.cc.bintools.targetPrefix}ld'" \
|
|
|
|
--replace \
|
|
|
|
"find_program('objcopy'" \
|
|
|
|
"find_program('${stdenv.cc.bintools.targetPrefix}objcopy'"
|
2020-03-07 23:47:22 +01:00
|
|
|
'';
|
|
|
|
|
2020-08-12 18:34:09 +02:00
|
|
|
outputs = [ "out" "man" "dev" ];
|
2018-03-03 00:31:30 +01:00
|
|
|
|
|
|
|
nativeBuildInputs =
|
|
|
|
[ pkgconfig intltool gperf libxslt gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45
|
|
|
|
ninja meson
|
|
|
|
coreutils # meson calls date, stat etc.
|
2018-03-10 15:41:34 +01:00
|
|
|
glibcLocales
|
|
|
|
patchelf getent m4
|
2019-05-22 00:07:39 +02:00
|
|
|
perl # to patch the libsystemd.so and remove dependencies on aarch64
|
2019-02-22 09:23:48 +01:00
|
|
|
|
|
|
|
(buildPackages.python3Packages.python.withPackages ( ps: with ps; [ python3Packages.lxml ]))
|
2018-03-03 00:31:30 +01:00
|
|
|
];
|
|
|
|
buildInputs =
|
2019-10-03 22:24:15 +02:00
|
|
|
[ linuxHeaders libcap curl.dev kmod xz pam acl
|
2019-08-19 02:08:46 +02:00
|
|
|
cryptsetup libuuid glib libgcrypt libgpgerror libidn2
|
2020-07-31 18:38:07 +02:00
|
|
|
pcre2 ] ++
|
2018-05-09 23:13:38 +02:00
|
|
|
stdenv.lib.optional withKexectools kexectools ++
|
|
|
|
stdenv.lib.optional withLibseccomp libseccomp ++
|
2018-03-25 23:52:20 +02:00
|
|
|
[ libffi audit lz4 bzip2 libapparmor
|
2018-03-03 00:31:30 +01:00
|
|
|
iptables gnu-efi
|
2018-05-09 23:13:38 +02:00
|
|
|
] ++ stdenv.lib.optional withSelinux libselinux;
|
2018-03-03 00:31:30 +01:00
|
|
|
|
|
|
|
#dontAddPrefix = true;
|
|
|
|
|
|
|
|
mesonFlags = [
|
2019-09-16 04:51:15 +02:00
|
|
|
"-Ddbuspolicydir=${placeholder "out"}/share/dbus-1/system.d"
|
2019-02-22 09:23:48 +01:00
|
|
|
"-Ddbussessionservicedir=${placeholder "out"}/share/dbus-1/services"
|
|
|
|
"-Ddbussystemservicedir=${placeholder "out"}/share/dbus-1/system-services"
|
|
|
|
"-Dpamconfdir=${placeholder "out"}/etc/pam.d"
|
|
|
|
"-Drootprefix=${placeholder "out"}"
|
|
|
|
"-Dpkgconfiglibdir=${placeholder "dev"}/lib/pkgconfig"
|
|
|
|
"-Dpkgconfigdatadir=${placeholder "dev"}/share/pkgconfig"
|
2018-03-03 00:31:30 +01:00
|
|
|
"-Dloadkeys-path=${kbd}/bin/loadkeys"
|
|
|
|
"-Dsetfont-path=${kbd}/bin/setfont"
|
|
|
|
"-Dtty-gid=3" # tty in NixOS has gid 3
|
2017-03-31 07:34:55 +02:00
|
|
|
"-Ddebug-shell=${bashInteractive}/bin/bash"
|
2019-05-17 20:00:22 +02:00
|
|
|
# while we do not run tests we should also not build them. Removes about 600 targets
|
|
|
|
"-Dtests=false"
|
2019-10-03 22:24:15 +02:00
|
|
|
"-Dimportd=true"
|
2018-03-03 00:31:30 +01:00
|
|
|
"-Dlz4=true"
|
2020-04-16 20:23:46 +02:00
|
|
|
"-Dhomed=false"
|
2018-03-03 00:31:30 +01:00
|
|
|
"-Dhostnamed=true"
|
|
|
|
"-Dnetworkd=true"
|
2020-04-16 20:28:26 +02:00
|
|
|
"-Dportabled=false"
|
2020-07-31 18:38:07 +02:00
|
|
|
"-Dremote=false"
|
2018-03-03 00:31:30 +01:00
|
|
|
"-Dsysusers=false"
|
|
|
|
"-Dtimedated=true"
|
|
|
|
"-Dtimesyncd=true"
|
|
|
|
"-Dfirstboot=false"
|
|
|
|
"-Dlocaled=true"
|
|
|
|
"-Dresolve=true"
|
|
|
|
"-Dsplit-usr=false"
|
2019-10-03 22:24:15 +02:00
|
|
|
"-Dlibcurl=true"
|
2018-03-03 00:31:30 +01:00
|
|
|
"-Dlibidn=false"
|
|
|
|
"-Dlibidn2=true"
|
|
|
|
"-Dquotacheck=false"
|
|
|
|
"-Dldconfig=false"
|
|
|
|
"-Dsmack=true"
|
2019-02-22 09:23:48 +01:00
|
|
|
"-Db_pie=true"
|
2019-07-31 23:19:49 +02:00
|
|
|
/*
|
|
|
|
As of now, systemd doesn't allow runtime configuration of these values. So
|
|
|
|
the settings in /etc/login.defs have no effect on it. Many people think this
|
|
|
|
should be supported however, see
|
|
|
|
- https://github.com/systemd/systemd/issues/3855
|
|
|
|
- https://github.com/systemd/systemd/issues/4850
|
|
|
|
- https://github.com/systemd/systemd/issues/9769
|
|
|
|
- https://github.com/systemd/systemd/issues/9843
|
|
|
|
- https://github.com/systemd/systemd/issues/10184
|
|
|
|
*/
|
|
|
|
"-Dsystem-uid-max=999"
|
|
|
|
"-Dsystem-gid-max=999"
|
2018-03-03 00:31:30 +01:00
|
|
|
# "-Dtime-epoch=1"
|
|
|
|
|
2019-05-22 03:03:35 +02:00
|
|
|
(if !stdenv.hostPlatform.isEfi then "-Dgnu-efi=false" else "-Dgnu-efi=true")
|
2018-03-03 00:31:30 +01:00
|
|
|
"-Defi-libdir=${toString gnu-efi}/lib"
|
|
|
|
"-Defi-includedir=${toString gnu-efi}/include/efi"
|
|
|
|
"-Defi-ldsdir=${toString gnu-efi}/lib"
|
|
|
|
|
|
|
|
"-Dsysvinit-path="
|
|
|
|
"-Dsysvrcnd-path="
|
2018-03-10 15:41:34 +01:00
|
|
|
|
|
|
|
"-Dkill-path=${coreutils}/bin/kill"
|
|
|
|
"-Dkmod-path=${kmod}/bin/kmod"
|
|
|
|
"-Dsulogin-path=${utillinux}/bin/sulogin"
|
|
|
|
"-Dmount-path=${utillinux}/bin/mount"
|
|
|
|
"-Dumount-path=${utillinux}/bin/umount"
|
2019-09-04 01:35:49 +02:00
|
|
|
"-Dcreate-log-dirs=false"
|
|
|
|
# Upstream uses cgroupsv2 by default. To support docker and other
|
|
|
|
# container managers we still need v1.
|
|
|
|
"-Ddefault-hierarchy=hybrid"
|
|
|
|
# Upstream defaulted to disable manpages since they optimize for the much
|
|
|
|
# more frequent development builds
|
|
|
|
"-Dman=true"
|
2018-03-03 00:31:30 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
mesonFlagsArray+=(-Dntp-servers="0.nixos.pool.ntp.org 1.nixos.pool.ntp.org 2.nixos.pool.ntp.org 3.nixos.pool.ntp.org")
|
|
|
|
export LC_ALL="en_US.UTF-8";
|
|
|
|
# FIXME: patch this in systemd properly (and send upstream).
|
|
|
|
# already fixed in f00929ad622c978f8ad83590a15a765b4beecac9: (u)mount
|
2019-05-14 01:20:56 +02:00
|
|
|
for i in \
|
|
|
|
src/core/mount.c \
|
|
|
|
src/core/swap.c \
|
|
|
|
src/cryptsetup/cryptsetup-generator.c \
|
|
|
|
src/fsck/fsck.c \
|
|
|
|
src/journal/cat.c \
|
|
|
|
src/nspawn/nspawn.c \
|
|
|
|
src/remount-fs/remount-fs.c \
|
|
|
|
src/shared/generator.c \
|
|
|
|
src/shutdown/shutdown.c \
|
|
|
|
units/emergency.service.in \
|
|
|
|
units/rescue.service.in \
|
|
|
|
units/systemd-logind.service.in \
|
|
|
|
units/systemd-nspawn@.service.in; \
|
|
|
|
do
|
2018-03-03 00:31:30 +01:00
|
|
|
test -e $i
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/bin/getent ${getent}/bin/getent \
|
2019-05-14 01:20:56 +02:00
|
|
|
--replace /sbin/mkswap ${lib.getBin utillinux}/sbin/mkswap \
|
2019-04-20 22:39:12 +02:00
|
|
|
--replace /sbin/swapon ${lib.getBin utillinux}/sbin/swapon \
|
|
|
|
--replace /sbin/swapoff ${lib.getBin utillinux}/sbin/swapoff \
|
2019-05-14 01:20:56 +02:00
|
|
|
--replace /sbin/mke2fs ${lib.getBin e2fsprogs}/sbin/mke2fs \
|
2019-04-20 22:39:12 +02:00
|
|
|
--replace /sbin/fsck ${lib.getBin utillinux}/sbin/fsck \
|
2018-03-03 00:31:30 +01:00
|
|
|
--replace /bin/echo ${coreutils}/bin/echo \
|
|
|
|
--replace /bin/cat ${coreutils}/bin/cat \
|
2019-04-20 22:39:12 +02:00
|
|
|
--replace /sbin/sulogin ${lib.getBin utillinux}/sbin/sulogin \
|
2019-10-05 19:25:43 +02:00
|
|
|
--replace /sbin/modprobe ${lib.getBin kmod}/sbin/modprobe \
|
2018-03-03 00:31:30 +01:00
|
|
|
--replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck \
|
|
|
|
--replace /bin/plymouth /run/current-system/sw/bin/plymouth # To avoid dependency
|
|
|
|
done
|
|
|
|
|
2019-02-22 09:23:48 +01:00
|
|
|
for dir in tools src/resolve test src/test; do
|
|
|
|
patchShebangs $dir
|
2018-03-03 00:31:30 +01:00
|
|
|
done
|
|
|
|
|
2019-10-03 22:24:15 +02:00
|
|
|
# absolute paths to gpg & tar
|
|
|
|
substituteInPlace src/import/pull-common.c \
|
2020-08-06 12:01:45 +02:00
|
|
|
--replace '"gpg"' '"${gnupg}/bin/gpg"'
|
2019-10-03 22:24:15 +02:00
|
|
|
for file in src/import/{{export,import,pull}-tar,import-common}.c; do
|
|
|
|
substituteInPlace $file \
|
|
|
|
--replace '"tar"' '"${gnutar}/bin/tar"'
|
|
|
|
done
|
|
|
|
|
2018-03-03 00:31:30 +01:00
|
|
|
substituteInPlace src/journal/catalog.c \
|
|
|
|
--replace /usr/lib/systemd/catalog/ $out/lib/systemd/catalog/
|
|
|
|
'';
|
|
|
|
|
|
|
|
# These defines are overridden by CFLAGS and would trigger annoying
|
|
|
|
# warning messages
|
|
|
|
postConfigure = ''
|
|
|
|
substituteInPlace config.h \
|
|
|
|
--replace "POLKIT_AGENT_BINARY_PATH" "_POLKIT_AGENT_BINARY_PATH" \
|
|
|
|
--replace "SYSTEMD_BINARY_PATH" "_SYSTEMD_BINARY_PATH" \
|
|
|
|
--replace "SYSTEMD_CGROUP_AGENT_PATH" "_SYSTEMD_CGROUP_AGENT_PATH"
|
|
|
|
'';
|
|
|
|
|
2019-10-30 00:53:51 +01:00
|
|
|
NIX_CFLAGS_COMPILE = toString [
|
|
|
|
# Can't say ${polkit.bin}/bin/pkttyagent here because that would
|
|
|
|
# lead to a cyclic dependency.
|
|
|
|
"-UPOLKIT_AGENT_BINARY_PATH" "-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\""
|
2018-03-03 00:31:30 +01:00
|
|
|
|
2019-10-30 00:53:51 +01:00
|
|
|
# Set the release_agent on /sys/fs/cgroup/systemd to the
|
|
|
|
# currently running systemd (/run/current-system/systemd) so
|
|
|
|
# that we don't use an obsolete/garbage-collected release agent.
|
|
|
|
"-USYSTEMD_CGROUP_AGENT_PATH" "-DSYSTEMD_CGROUP_AGENT_PATH=\"/run/current-system/systemd/lib/systemd/systemd-cgroups-agent\""
|
2018-03-03 00:31:30 +01:00
|
|
|
|
2019-10-30 00:53:51 +01:00
|
|
|
"-USYSTEMD_BINARY_PATH" "-DSYSTEMD_BINARY_PATH=\"/run/current-system/systemd/lib/systemd/systemd\""
|
|
|
|
];
|
2018-03-03 00:31:30 +01:00
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails a bunch of tests
|
|
|
|
|
2020-01-26 16:15:19 +01:00
|
|
|
# trigger the test -n "$DESTDIR" || mutate in upstreams build system
|
|
|
|
preInstall = ''
|
|
|
|
export DESTDIR=/
|
|
|
|
'';
|
|
|
|
|
2018-03-03 00:31:30 +01:00
|
|
|
postInstall = ''
|
|
|
|
# sysinit.target: Don't depend on
|
|
|
|
# systemd-tmpfiles-setup.service. This interferes with NixOps's
|
|
|
|
# send-keys feature (since sshd.service depends indirectly on
|
|
|
|
# sysinit.target).
|
|
|
|
mv $out/lib/systemd/system/sysinit.target.wants/systemd-tmpfiles-setup-dev.service $out/lib/systemd/system/multi-user.target.wants/
|
|
|
|
|
|
|
|
mkdir -p $out/example/systemd
|
|
|
|
mv $out/lib/{modules-load.d,binfmt.d,sysctl.d,tmpfiles.d} $out/example
|
|
|
|
mv $out/lib/systemd/{system,user} $out/example/systemd
|
|
|
|
|
|
|
|
rm -rf $out/etc/systemd/system
|
|
|
|
|
|
|
|
# Fix reference to /bin/false in the D-Bus services.
|
|
|
|
for i in $out/share/dbus-1/system-services/*.service; do
|
|
|
|
substituteInPlace $i --replace /bin/false ${coreutils}/bin/false
|
|
|
|
done
|
|
|
|
|
|
|
|
rm -rf $out/etc/rpm
|
|
|
|
|
|
|
|
# "kernel-install" shouldn't be used on NixOS.
|
|
|
|
find $out -name "*kernel-install*" -exec rm {} \;
|
|
|
|
''; # */
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
# The interface version prevents NixOS from switching to an
|
|
|
|
# incompatible systemd at runtime. (Switching across reboots is
|
|
|
|
# fine, of course.) It should be increased whenever systemd changes
|
|
|
|
# in a backwards-incompatible way. If the interface version of two
|
|
|
|
# systemd builds is the same, then we can switch between them at
|
|
|
|
# runtime; otherwise we can't and we need to reboot.
|
2019-09-16 16:51:19 +02:00
|
|
|
passthru.interfaceVersion = 2;
|
2018-03-03 00:31:30 +01:00
|
|
|
|
2018-08-18 00:32:36 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-02-18 21:46:40 +01:00
|
|
|
homepage = "https://www.freedesktop.org/wiki/Software/systemd/";
|
2018-03-03 00:31:30 +01:00
|
|
|
description = "A system and service manager for Linux";
|
2018-08-18 00:32:36 +02:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.linux;
|
2019-05-08 12:55:25 +02:00
|
|
|
priority = 10;
|
2020-04-16 06:03:47 +02:00
|
|
|
maintainers = with maintainers; [ andir eelco flokli ];
|
2018-03-03 00:31:30 +01:00
|
|
|
};
|
2012-05-21 22:48:19 +02:00
|
|
|
}
|