2020-10-28 01:28:29 +03:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
2020-10-25 11:38:02 +03:00
|
|
|
, buildPackages
|
2020-10-28 01:28:29 +03:00
|
|
|
, ninja
|
|
|
|
, meson
|
|
|
|
, m4
|
|
|
|
, pkgconfig
|
|
|
|
, coreutils
|
|
|
|
, gperf
|
|
|
|
, getent
|
|
|
|
, patchelf
|
|
|
|
, glibcLocales
|
|
|
|
, glib
|
|
|
|
, substituteAll
|
|
|
|
, gettext
|
|
|
|
, python3Packages
|
|
|
|
|
|
|
|
# Mandatory dependencies
|
2020-10-26 10:17:14 +03:00
|
|
|
, libcap
|
|
|
|
, utillinux
|
|
|
|
, kbd
|
|
|
|
, kmod
|
|
|
|
|
2020-10-28 01:28:29 +03:00
|
|
|
# Optional dependencies
|
|
|
|
, pam
|
|
|
|
, cryptsetup
|
|
|
|
, lvm2
|
|
|
|
, audit
|
|
|
|
, acl
|
|
|
|
, lz4
|
|
|
|
, libgcrypt
|
|
|
|
, libgpgerror
|
|
|
|
, libidn2
|
|
|
|
, curl
|
|
|
|
, gnutar
|
|
|
|
, gnupg
|
|
|
|
, zlib
|
|
|
|
, xz
|
|
|
|
, libuuid
|
|
|
|
, libffi
|
|
|
|
, libapparmor
|
|
|
|
, intltool
|
|
|
|
, bzip2
|
|
|
|
, pcre2
|
|
|
|
, e2fsprogs
|
2020-10-26 10:17:14 +03:00
|
|
|
, linuxHeaders ? stdenv.cc.libc.linuxHeaders
|
|
|
|
, gnu-efi
|
|
|
|
, iptables
|
2020-10-28 01:28:29 +03:00
|
|
|
, withSelinux ? false
|
|
|
|
, libselinux
|
|
|
|
, withLibseccomp ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) libseccomp.meta.platforms
|
|
|
|
, libseccomp
|
|
|
|
, withKexectools ? lib.any (lib.meta.platformMatch stdenv.hostPlatform) kexectools.meta.platforms
|
|
|
|
, kexectools
|
2020-10-26 10:17:14 +03:00
|
|
|
, bashInteractive
|
|
|
|
|
2020-10-28 02:29:07 +03:00
|
|
|
, withAnalyze ? true
|
2020-10-28 02:12:45 +03:00
|
|
|
, withCoredump ? true
|
2020-10-28 02:02:24 +03:00
|
|
|
, withCompression ? true # adds bzip2, lz4 and xz
|
2020-10-28 01:48:19 +03:00
|
|
|
, withCryptsetup ? true
|
2020-10-28 02:54:08 +03:00
|
|
|
, withDocumentation ? true
|
2020-10-28 01:48:19 +03:00
|
|
|
, withEfi ? stdenv.hostPlatform.isEfi
|
2020-10-26 10:17:14 +03:00
|
|
|
, withHostnamed ? true
|
2020-10-28 01:48:19 +03:00
|
|
|
, withHwdb ? true
|
|
|
|
, withImportd ? true
|
2020-10-26 10:17:14 +03:00
|
|
|
, withLocaled ? true
|
2020-10-28 01:48:19 +03:00
|
|
|
, withLogind ? true
|
2020-10-26 10:17:14 +03:00
|
|
|
, withNetworkd ? true
|
2020-10-28 02:48:51 +03:00
|
|
|
, withPolkit ? true
|
2020-10-28 01:48:19 +03:00
|
|
|
, withRemote ? false # has always been disabled on NixOS, upstream version appears broken anyway
|
|
|
|
, withResolved ? true
|
2020-10-28 02:51:39 +03:00
|
|
|
, withShellCompletions ? true
|
2020-10-26 10:17:14 +03:00
|
|
|
, withTimedated ? true
|
|
|
|
, withTimesyncd ? true
|
|
|
|
|
2020-10-28 01:28:29 +03:00
|
|
|
# name argument
|
2020-10-26 10:17:14 +03:00
|
|
|
, pname ? "systemd"
|
|
|
|
|
|
|
|
|
2020-10-28 01:28:29 +03:00
|
|
|
, libxslt
|
|
|
|
, docbook_xsl
|
|
|
|
, docbook_xml_dtd_42
|
|
|
|
, docbook_xml_dtd_45
|
2012-06-06 20:07:30 +04:00
|
|
|
}:
|
2012-05-22 00:48:19 +04:00
|
|
|
|
2020-10-26 10:17:14 +03:00
|
|
|
assert withResolved -> (libgcrypt != null && libgpgerror != null);
|
|
|
|
assert withImportd ->
|
2020-10-28 01:28:29 +03:00
|
|
|
(curl.dev != null && zlib != null && xz != null && libgcrypt != null
|
2020-10-28 02:02:24 +03:00
|
|
|
&& gnutar != null && gnupg != null && withCompression );
|
2020-10-26 10:17:14 +03:00
|
|
|
|
2020-10-28 02:33:26 +03:00
|
|
|
assert withEfi -> (gnu-efi != null);
|
2020-10-28 01:48:19 +03:00
|
|
|
assert withRemote -> lib.getDev curl != null;
|
2020-10-28 02:12:45 +03:00
|
|
|
assert withCoredump -> withCompression;
|
2020-10-28 01:48:19 +03:00
|
|
|
|
2020-10-26 10:17:14 +03:00
|
|
|
assert withCryptsetup ->
|
2020-10-28 01:28:29 +03:00
|
|
|
(cryptsetup != null);
|
2020-08-06 13:04:28 +03:00
|
|
|
let
|
2020-10-28 01:48:19 +03:00
|
|
|
wantCurl = withRemote || withImportd;
|
|
|
|
|
2020-09-27 17:45:07 +03:00
|
|
|
version = "246.6";
|
2020-10-28 01:28:29 +03:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2020-10-26 10:17:14 +03:00
|
|
|
inherit version pname;
|
2018-03-03 02:31:30 +03:00
|
|
|
|
2020-08-06 13:04:28 +03: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 02:31:30 +03:00
|
|
|
src = fetchFromGitHub {
|
2020-01-26 16:56:41 +03:00
|
|
|
owner = "systemd";
|
|
|
|
repo = "systemd-stable";
|
2020-08-06 13:04:28 +03:00
|
|
|
rev = "v${version}";
|
2020-09-27 17:45:07 +03:00
|
|
|
sha256 = "1yhj2jlighqqpw1xk9q52f3pncjn47ipi224k35d6syb94q2b988";
|
2018-03-03 02:31:30 +03:00
|
|
|
};
|
|
|
|
|
2020-08-06 13:04:28 +03: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 16:56:41 +03:00
|
|
|
patches = [
|
|
|
|
./0001-Start-device-units-for-uninitialised-encrypted-devic.patch
|
2020-04-30 02:03:18 +03: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-10-26 23:26:40 +03:00
|
|
|
./0019-logind-seat-debus-show-CanMultiSession-again.patch
|
2020-01-26 16:56:41 +03:00
|
|
|
];
|
|
|
|
|
2020-03-08 01:47:22 +03:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/basic/path-util.h --replace "@defaultPathNormal@" "${placeholder "out"}/bin/"
|
2020-06-08 03:25:01 +03: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-08 01:47:22 +03:00
|
|
|
'';
|
|
|
|
|
2020-08-12 19:34:09 +03:00
|
|
|
outputs = [ "out" "man" "dev" ];
|
2018-03-03 02:31:30 +03:00
|
|
|
|
|
|
|
nativeBuildInputs =
|
2020-10-28 01:28:29 +03:00
|
|
|
[
|
|
|
|
pkgconfig
|
|
|
|
gperf
|
|
|
|
ninja
|
|
|
|
meson
|
2018-03-03 02:31:30 +03:00
|
|
|
coreutils # meson calls date, stat etc.
|
2018-03-10 17:41:34 +03:00
|
|
|
glibcLocales
|
2020-10-28 01:28:29 +03:00
|
|
|
patchelf
|
|
|
|
getent
|
|
|
|
m4
|
2019-02-22 11:23:48 +03:00
|
|
|
|
2020-10-26 10:17:14 +03:00
|
|
|
intltool
|
|
|
|
gettext
|
|
|
|
|
2020-10-28 01:28:29 +03:00
|
|
|
libxslt
|
|
|
|
docbook_xsl
|
|
|
|
docbook_xml_dtd_42
|
|
|
|
docbook_xml_dtd_45
|
|
|
|
(buildPackages.python3Packages.python.withPackages (ps: with ps; [ python3Packages.lxml ]))
|
2018-03-03 02:31:30 +03:00
|
|
|
];
|
2020-10-28 01:28:29 +03:00
|
|
|
|
2018-03-03 02:31:30 +03:00
|
|
|
buildInputs =
|
2020-10-28 01:28:29 +03:00
|
|
|
[
|
|
|
|
acl
|
|
|
|
audit
|
|
|
|
glib
|
|
|
|
kmod
|
|
|
|
libapparmor
|
|
|
|
libcap
|
|
|
|
libffi
|
|
|
|
libgcrypt
|
|
|
|
libgpgerror
|
|
|
|
libidn2
|
|
|
|
libuuid
|
|
|
|
linuxHeaders
|
|
|
|
pam
|
|
|
|
pcre2
|
2020-10-28 01:37:01 +03:00
|
|
|
]
|
2020-10-28 01:48:19 +03:00
|
|
|
++ lib.optional wantCurl (lib.getDev curl)
|
2020-10-28 02:02:24 +03:00
|
|
|
++ lib.optionals withCompression [ bzip2 lz4 xz ]
|
2020-10-28 01:37:01 +03:00
|
|
|
++ lib.optional withNetworkd iptables
|
|
|
|
++ lib.optional withKexectools kexectools
|
2020-10-28 01:28:29 +03:00
|
|
|
++ lib.optional withLibseccomp libseccomp
|
|
|
|
++ lib.optional withEfi gnu-efi
|
|
|
|
++ lib.optional withSelinux libselinux
|
2020-10-28 01:52:28 +03:00
|
|
|
++ lib.optional withCryptsetup (lib.getDev cryptsetup.dev)
|
2020-10-28 01:28:29 +03:00
|
|
|
;
|
2018-03-03 02:31:30 +03:00
|
|
|
|
|
|
|
#dontAddPrefix = true;
|
|
|
|
|
|
|
|
mesonFlags = [
|
2019-09-16 05:51:15 +03:00
|
|
|
"-Ddbuspolicydir=${placeholder "out"}/share/dbus-1/system.d"
|
2019-02-22 11:23:48 +03: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 02:31:30 +03:00
|
|
|
"-Dloadkeys-path=${kbd}/bin/loadkeys"
|
|
|
|
"-Dsetfont-path=${kbd}/bin/setfont"
|
|
|
|
"-Dtty-gid=3" # tty in NixOS has gid 3
|
2017-03-31 08:34:55 +03:00
|
|
|
"-Ddebug-shell=${bashInteractive}/bin/bash"
|
2020-10-28 01:20:54 +03:00
|
|
|
"-Dglib=${lib.boolToString (glib != null)}"
|
2019-05-17 21:00:22 +03:00
|
|
|
# while we do not run tests we should also not build them. Removes about 600 targets
|
|
|
|
"-Dtests=false"
|
2020-10-28 02:29:07 +03:00
|
|
|
"-Danalyze=${lib.boolToString withAnalyze}"
|
2020-10-28 02:29:34 +03:00
|
|
|
"-Dgcrypt=${lib.boolToString (libgcrypt != null)}"
|
2020-10-28 01:20:54 +03:00
|
|
|
"-Dimportd=${lib.boolToString withImportd}"
|
2020-10-28 02:02:24 +03:00
|
|
|
"-Dlz4=${lib.boolToString withCompression}"
|
2020-04-16 21:23:46 +03:00
|
|
|
"-Dhomed=false"
|
2020-10-28 01:20:54 +03:00
|
|
|
"-Dlogind=${lib.boolToString withLogind}"
|
|
|
|
"-Dlocaled=${lib.boolToString withLocaled}"
|
|
|
|
"-Dhostnamed=${lib.boolToString withHostnamed}"
|
|
|
|
"-Dnetworkd=${lib.boolToString withNetworkd}"
|
2020-10-28 02:48:51 +03:00
|
|
|
"-Dpolkit=${lib.boolToString withPolkit}"
|
2020-10-28 01:20:54 +03:00
|
|
|
"-Dcryptsetup=${lib.boolToString withCryptsetup}"
|
2020-04-16 21:28:26 +03:00
|
|
|
"-Dportabled=false"
|
2020-10-28 01:20:54 +03:00
|
|
|
"-Dhwdb=${lib.boolToString withHwdb}"
|
2020-10-28 01:48:19 +03:00
|
|
|
"-Dremote=${lib.boolToString withRemote}"
|
2018-03-03 02:31:30 +03:00
|
|
|
"-Dsysusers=false"
|
2020-10-28 01:20:54 +03:00
|
|
|
"-Dtimedated=${lib.boolToString withTimedated}"
|
|
|
|
"-Dtimesyncd=${lib.boolToString withTimesyncd}"
|
2020-10-28 02:12:45 +03:00
|
|
|
"-Dcoredump=${lib.boolToString withCoredump}"
|
2018-03-03 02:31:30 +03:00
|
|
|
"-Dfirstboot=false"
|
2020-10-28 01:20:54 +03:00
|
|
|
"-Dresolve=${lib.boolToString withResolved}"
|
2018-03-03 02:31:30 +03:00
|
|
|
"-Dsplit-usr=false"
|
2020-10-28 01:48:19 +03:00
|
|
|
"-Dlibcurl=${lib.boolToString wantCurl}"
|
2018-03-03 02:31:30 +03:00
|
|
|
"-Dlibidn=false"
|
|
|
|
"-Dlibidn2=true"
|
|
|
|
"-Dquotacheck=false"
|
|
|
|
"-Dldconfig=false"
|
|
|
|
"-Dsmack=true"
|
2019-02-22 11:23:48 +03:00
|
|
|
"-Db_pie=true"
|
2019-08-01 00:19:49 +03: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 02:31:30 +03:00
|
|
|
# "-Dtime-epoch=1"
|
|
|
|
|
|
|
|
"-Dsysvinit-path="
|
|
|
|
"-Dsysvrcnd-path="
|
2018-03-10 17:41:34 +03: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 02:35:49 +03: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"
|
2020-10-26 10:17:14 +03:00
|
|
|
|
2020-10-28 02:35:00 +03:00
|
|
|
"-Defi=${lib.boolToString withEfi}"
|
2020-10-28 02:33:26 +03:00
|
|
|
"-Dgnu-efi=${lib.boolToString withEfi}"
|
|
|
|
] ++ lib.optionals withEfi [
|
2020-10-26 10:17:14 +03:00
|
|
|
"-Defi-libdir=${toString gnu-efi}/lib"
|
|
|
|
"-Defi-includedir=${toString gnu-efi}/include/efi"
|
|
|
|
"-Defi-ldsdir=${toString gnu-efi}/lib"
|
2020-10-28 02:51:39 +03:00
|
|
|
] ++ lib.optionals (withShellCompletions == false) [
|
|
|
|
"-Dbashcompletiondir=no"
|
|
|
|
"-Dzshcompletiondir=no"
|
2018-03-03 02:31:30 +03: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 02:20:56 +03: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 02:31:30 +03:00
|
|
|
test -e $i
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/bin/getent ${getent}/bin/getent \
|
2019-05-14 02:20:56 +03:00
|
|
|
--replace /sbin/mkswap ${lib.getBin utillinux}/sbin/mkswap \
|
2019-04-20 23:39:12 +03:00
|
|
|
--replace /sbin/swapon ${lib.getBin utillinux}/sbin/swapon \
|
|
|
|
--replace /sbin/swapoff ${lib.getBin utillinux}/sbin/swapoff \
|
2019-05-14 02:20:56 +03:00
|
|
|
--replace /sbin/mke2fs ${lib.getBin e2fsprogs}/sbin/mke2fs \
|
2019-04-20 23:39:12 +03:00
|
|
|
--replace /sbin/fsck ${lib.getBin utillinux}/sbin/fsck \
|
2018-03-03 02:31:30 +03:00
|
|
|
--replace /bin/echo ${coreutils}/bin/echo \
|
|
|
|
--replace /bin/cat ${coreutils}/bin/cat \
|
2019-04-20 23:39:12 +03:00
|
|
|
--replace /sbin/sulogin ${lib.getBin utillinux}/sbin/sulogin \
|
2019-10-05 20:25:43 +03:00
|
|
|
--replace /sbin/modprobe ${lib.getBin kmod}/sbin/modprobe \
|
2018-03-03 02:31:30 +03: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 11:23:48 +03:00
|
|
|
for dir in tools src/resolve test src/test; do
|
|
|
|
patchShebangs $dir
|
2018-03-03 02:31:30 +03:00
|
|
|
done
|
|
|
|
|
2019-10-03 23:24:15 +03:00
|
|
|
# absolute paths to gpg & tar
|
|
|
|
substituteInPlace src/import/pull-common.c \
|
2020-08-06 13:01:45 +03:00
|
|
|
--replace '"gpg"' '"${gnupg}/bin/gpg"'
|
2019-10-03 23:24:15 +03: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 02:31:30 +03: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 02:53:51 +03:00
|
|
|
NIX_CFLAGS_COMPILE = toString [
|
|
|
|
# Can't say ${polkit.bin}/bin/pkttyagent here because that would
|
|
|
|
# lead to a cyclic dependency.
|
2020-10-28 01:28:29 +03:00
|
|
|
"-UPOLKIT_AGENT_BINARY_PATH"
|
|
|
|
"-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\""
|
2018-03-03 02:31:30 +03:00
|
|
|
|
2019-10-30 02:53:51 +03: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.
|
2020-10-28 01:28:29 +03:00
|
|
|
"-USYSTEMD_CGROUP_AGENT_PATH"
|
|
|
|
"-DSYSTEMD_CGROUP_AGENT_PATH=\"/run/current-system/systemd/lib/systemd/systemd-cgroups-agent\""
|
2018-03-03 02:31:30 +03:00
|
|
|
|
2020-10-28 01:28:29 +03:00
|
|
|
"-USYSTEMD_BINARY_PATH"
|
|
|
|
"-DSYSTEMD_BINARY_PATH=\"/run/current-system/systemd/lib/systemd/systemd\""
|
2019-10-30 02:53:51 +03:00
|
|
|
];
|
2018-03-03 02:31:30 +03:00
|
|
|
|
2018-04-25 06:20:18 +03:00
|
|
|
doCheck = false; # fails a bunch of tests
|
|
|
|
|
2020-01-26 18:15:19 +03:00
|
|
|
# trigger the test -n "$DESTDIR" || mutate in upstreams build system
|
|
|
|
preInstall = ''
|
|
|
|
export DESTDIR=/
|
|
|
|
'';
|
|
|
|
|
2018-03-03 02:31:30 +03: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 {} \;
|
2020-10-28 02:54:08 +03:00
|
|
|
'' + lib.optionalString (!withDocumentation) ''
|
|
|
|
rm -rf $out/share/doc
|
|
|
|
'';
|
2018-03-03 02:31:30 +03:00
|
|
|
|
|
|
|
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 17:51:19 +03:00
|
|
|
passthru.interfaceVersion = 2;
|
2018-03-03 02:31:30 +03:00
|
|
|
|
2020-10-28 01:20:54 +03:00
|
|
|
meta = with lib; {
|
2020-02-18 23:46:40 +03:00
|
|
|
homepage = "https://www.freedesktop.org/wiki/Software/systemd/";
|
2018-03-03 02:31:30 +03:00
|
|
|
description = "A system and service manager for Linux";
|
2018-08-18 01:32:36 +03:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.linux;
|
2019-05-08 13:55:25 +03:00
|
|
|
priority = 10;
|
2020-10-26 10:17:14 +03:00
|
|
|
maintainers = with maintainers; [ andir eelco flokli kloenk ];
|
2018-03-03 02:31:30 +03:00
|
|
|
};
|
2012-05-22 00:48:19 +04:00
|
|
|
}
|