2016-08-31 22:58:38 +00:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, intltool, gperf, libcap, kmod
|
2014-08-30 21:30:31 +00:00
|
|
|
, zlib, xz, pam, acl, cryptsetup, libuuid, m4, utillinux, libffi
|
2016-02-12 13:34:36 +00:00
|
|
|
, glib, kbd, libxslt, coreutils, libgcrypt, libgpgerror, libapparmor, audit, lz4
|
2016-05-09 17:27:27 +00:00
|
|
|
, kexectools, libmicrohttpd, linuxHeaders ? stdenv.cc.libc.linuxHeaders, libseccomp
|
2016-05-31 14:52:07 +00:00
|
|
|
, iptables, gnu-efi
|
2015-09-07 22:01:39 +00:00
|
|
|
, autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45
|
2015-10-02 10:07:54 +00:00
|
|
|
, enableKDbus ? false
|
2012-06-06 16:07:30 +00:00
|
|
|
}:
|
2012-05-21 20:48:19 +00:00
|
|
|
|
2013-06-17 20:06:36 +00:00
|
|
|
assert stdenv.isLinux;
|
2013-05-09 11:58:08 +00:00
|
|
|
|
2012-05-21 20:48:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-07-28 14:11:10 +00:00
|
|
|
version = "231";
|
2013-03-23 18:13:36 +00:00
|
|
|
name = "systemd-${version}";
|
2012-05-21 20:48:19 +00:00
|
|
|
|
2015-09-08 11:07:23 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NixOS";
|
|
|
|
repo = "systemd";
|
2016-09-30 09:23:51 +00:00
|
|
|
rev = "3b11791d323cf2d0e00a156967021e1ae9119de2";
|
|
|
|
sha256 = "1xzldwd6407jdg6z36smd49d961nmqykpay969i4xfdldcgyjdv0";
|
2012-05-21 20:48:19 +00:00
|
|
|
};
|
|
|
|
|
2016-08-31 22:58:38 +00:00
|
|
|
patches = [
|
|
|
|
# Fixes tty issues, see #18158. Remove when upgrading to systemd 232.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/systemd/systemd/commit/bd64d82c1c0e3fe2a5f9b3dd9132d62834f50b2d.patch";
|
|
|
|
sha256 = "1gc9fxdlnfmjhbi77xfwcb5mkhryjsdi0rmbh2lq2qq737iyqqwm";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-09-05 16:59:00 +00:00
|
|
|
outputs = [ "out" "lib" "man" "dev" ];
|
2013-06-26 11:34:55 +00:00
|
|
|
|
2013-05-09 11:58:08 +00:00
|
|
|
buildInputs =
|
2015-05-22 13:34:08 +00:00
|
|
|
[ linuxHeaders pkgconfig intltool gperf libcap kmod xz pam acl
|
2016-02-12 13:34:36 +00:00
|
|
|
/* cryptsetup */ libuuid m4 glib libxslt libgcrypt libgpgerror
|
2016-02-03 15:54:03 +00:00
|
|
|
libmicrohttpd kexectools libseccomp libffi audit lz4 libapparmor
|
2016-05-31 14:52:07 +00:00
|
|
|
iptables gnu-efi
|
2015-09-07 22:01:39 +00:00
|
|
|
/* FIXME: we may be able to prevent the following dependencies
|
|
|
|
by generating an autoconf'd tarball, but that's probably not
|
|
|
|
worth it. */
|
|
|
|
autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45
|
2015-12-13 16:31:36 +00:00
|
|
|
];
|
2012-05-21 20:48:19 +00:00
|
|
|
|
2014-08-30 17:11:52 +00:00
|
|
|
|
2012-05-21 20:48:19 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--localstatedir=/var"
|
2012-06-04 03:21:12 +00:00
|
|
|
"--sysconfdir=/etc"
|
2012-05-21 20:48:19 +00:00
|
|
|
"--with-rootprefix=$(out)"
|
2013-02-03 01:21:40 +00:00
|
|
|
"--with-kbd-loadkeys=${kbd}/bin/loadkeys"
|
|
|
|
"--with-kbd-setfont=${kbd}/bin/setfont"
|
2012-05-21 20:48:19 +00:00
|
|
|
"--with-rootprefix=$(out)"
|
|
|
|
"--with-dbuspolicydir=$(out)/etc/dbus-1/system.d"
|
|
|
|
"--with-dbussystemservicedir=$(out)/share/dbus-1/system-services"
|
|
|
|
"--with-dbussessionservicedir=$(out)/share/dbus-1/services"
|
2012-06-19 19:58:49 +00:00
|
|
|
"--with-tty-gid=3" # tty in NixOS has gid 3
|
2014-04-15 22:59:26 +00:00
|
|
|
"--enable-compat-libs" # get rid of this eventually
|
2014-05-01 12:16:58 +00:00
|
|
|
"--disable-tests"
|
2014-08-23 21:28:03 +00:00
|
|
|
|
2015-04-12 19:47:51 +00:00
|
|
|
"--enable-lz4"
|
2015-12-06 13:30:18 +00:00
|
|
|
"--enable-hostnamed"
|
2014-11-19 21:17:21 +00:00
|
|
|
"--enable-networkd"
|
2014-08-23 21:28:03 +00:00
|
|
|
"--disable-sysusers"
|
2015-12-06 13:30:18 +00:00
|
|
|
"--enable-timedated"
|
2014-11-19 21:17:21 +00:00
|
|
|
"--enable-timesyncd"
|
2014-08-23 21:28:03 +00:00
|
|
|
"--disable-firstboot"
|
2015-12-06 13:30:18 +00:00
|
|
|
"--enable-localed"
|
2014-11-19 21:17:21 +00:00
|
|
|
"--enable-resolved"
|
2014-08-23 21:28:03 +00:00
|
|
|
"--disable-split-usr"
|
2015-05-11 12:41:41 +00:00
|
|
|
"--disable-libcurl"
|
|
|
|
"--disable-libidn"
|
|
|
|
"--disable-quotacheck"
|
|
|
|
"--disable-ldconfig"
|
2015-09-07 22:01:39 +00:00
|
|
|
"--disable-smack"
|
2014-08-23 21:28:03 +00:00
|
|
|
|
2016-06-01 09:59:25 +00:00
|
|
|
(if stdenv.isArm then "--disable-gnuefi" else "--enable-gnuefi")
|
2016-05-31 14:52:07 +00:00
|
|
|
"--with-efi-libdir=${gnu-efi}/lib"
|
|
|
|
"--with-efi-includedir=${gnu-efi}/include"
|
|
|
|
"--with-efi-ldsdir=${gnu-efi}/lib"
|
|
|
|
|
2014-08-23 21:28:03 +00:00
|
|
|
"--with-sysvinit-path="
|
|
|
|
"--with-sysvrcnd-path="
|
|
|
|
"--with-rc-local-script-path-stop=/etc/halt.local"
|
2016-02-12 13:34:36 +00:00
|
|
|
] ++ (if enableKDbus then [ "--enable-kdbus" ] else [ "--disable-kdbus" ]);
|
2012-05-21 20:48:19 +00:00
|
|
|
|
2016-05-31 16:05:12 +00:00
|
|
|
hardeningDisable = [ "stackprotector" ];
|
|
|
|
|
2012-06-04 03:21:12 +00:00
|
|
|
preConfigure =
|
|
|
|
''
|
2015-09-07 22:01:39 +00:00
|
|
|
./autogen.sh
|
|
|
|
|
2012-06-06 16:07:30 +00:00
|
|
|
# FIXME: patch this in systemd properly (and send upstream).
|
2015-06-01 22:49:42 +00:00
|
|
|
for i in src/remount-fs/remount-fs.c src/core/mount.c src/core/swap.c src/fsck/fsck.c units/emergency.service.in units/rescue.service.in src/journal/cat.c src/core/shutdown.c src/nspawn/nspawn.c src/shared/generator.c; do
|
2012-06-06 16:07:30 +00:00
|
|
|
test -e $i
|
2012-06-04 03:21:12 +00:00
|
|
|
substituteInPlace $i \
|
2014-08-23 14:04:53 +00:00
|
|
|
--replace /usr/bin/getent ${stdenv.glibc.bin}/bin/getent \
|
2013-06-12 15:12:44 +00:00
|
|
|
--replace /bin/mount ${utillinux.bin}/bin/mount \
|
|
|
|
--replace /bin/umount ${utillinux.bin}/bin/umount \
|
|
|
|
--replace /sbin/swapon ${utillinux.bin}/sbin/swapon \
|
|
|
|
--replace /sbin/swapoff ${utillinux.bin}/sbin/swapoff \
|
|
|
|
--replace /sbin/fsck ${utillinux.bin}/sbin/fsck \
|
2013-01-08 17:11:56 +00:00
|
|
|
--replace /bin/echo ${coreutils}/bin/echo \
|
2013-04-24 21:46:09 +00:00
|
|
|
--replace /bin/cat ${coreutils}/bin/cat \
|
2015-10-03 18:52:03 +00:00
|
|
|
--replace /sbin/sulogin ${utillinux.bin}/sbin/sulogin \
|
2016-07-06 23:51:20 +00:00
|
|
|
--replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck \
|
|
|
|
--replace /bin/plymouth /run/current-system/sw/bin/plymouth # To avoid dependency
|
2012-06-04 03:21:12 +00:00
|
|
|
done
|
2012-11-29 17:50:07 +00:00
|
|
|
|
|
|
|
substituteInPlace src/journal/catalog.c \
|
|
|
|
--replace /usr/lib/systemd/catalog/ $out/lib/systemd/catalog/
|
2013-06-26 11:34:55 +00:00
|
|
|
|
2015-07-01 09:19:03 +00:00
|
|
|
configureFlagsArray+=("--with-ntp-servers=0.nixos.pool.ntp.org 1.nixos.pool.ntp.org 2.nixos.pool.ntp.org 3.nixos.pool.ntp.org")
|
2015-10-03 18:52:03 +00:00
|
|
|
|
|
|
|
#export NIX_CFLAGS_LINK+=" -Wl,-rpath,$libudev/lib"
|
2012-06-04 03:21:12 +00:00
|
|
|
'';
|
|
|
|
|
2013-01-08 14:37:01 +00:00
|
|
|
PYTHON_BINARY = "${coreutils}/bin/env python"; # don't want a build time dependency on Python
|
|
|
|
|
2012-08-21 12:33:10 +00:00
|
|
|
NIX_CFLAGS_COMPILE =
|
2015-10-14 04:03:25 +00:00
|
|
|
[ # Can't say ${polkit.bin}/bin/pkttyagent here because that would
|
2012-08-21 12:33:10 +00:00
|
|
|
# lead to a cyclic dependency.
|
2013-04-12 12:31:53 +00:00
|
|
|
"-UPOLKIT_AGENT_BINARY_PATH" "-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\""
|
2012-08-21 12:33:10 +00:00
|
|
|
"-fno-stack-protector"
|
2013-04-12 12:31:53 +00: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\""
|
2014-08-23 21:28:03 +00:00
|
|
|
|
|
|
|
"-USYSTEMD_BINARY_PATH" "-DSYSTEMD_BINARY_PATH=\"/run/current-system/systemd/lib/systemd/systemd\""
|
2012-08-21 12:33:10 +00:00
|
|
|
];
|
2012-06-14 22:10:52 +00:00
|
|
|
|
2014-04-15 22:59:26 +00:00
|
|
|
installFlags =
|
|
|
|
[ "localstatedir=$(TMPDIR)/var"
|
|
|
|
"sysconfdir=$(out)/etc"
|
|
|
|
"sysvinitdir=$(TMPDIR)/etc/init.d"
|
|
|
|
"pamconfdir=$(out)/etc/pam.d"
|
|
|
|
];
|
2012-06-04 03:21:12 +00:00
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
2014-08-23 21:28:03 +00:00
|
|
|
# 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/
|
|
|
|
|
2015-04-24 10:37:40 +00:00
|
|
|
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
|
2012-06-14 22:10:52 +00:00
|
|
|
|
2014-04-15 22:59:26 +00:00
|
|
|
rm -rf $out/etc/systemd/system
|
|
|
|
|
2012-06-14 22:10:52 +00:00
|
|
|
# Install SysV compatibility commands.
|
|
|
|
mkdir -p $out/sbin
|
|
|
|
ln -s $out/lib/systemd/systemd $out/sbin/telinit
|
|
|
|
for i in init halt poweroff runlevel reboot shutdown; do
|
2012-08-09 14:51:48 +00:00
|
|
|
ln -s $out/bin/systemctl $out/sbin/$i
|
2012-06-14 22:10:52 +00:00
|
|
|
done
|
2012-10-04 15:10:51 +00:00
|
|
|
|
|
|
|
# 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
|
2012-11-29 17:50:07 +00:00
|
|
|
|
|
|
|
rm -rf $out/etc/rpm
|
2013-06-26 11:34:55 +00:00
|
|
|
|
2016-09-05 16:59:00 +00:00
|
|
|
rm $lib/lib/*.la
|
2015-05-22 14:39:42 +00:00
|
|
|
|
|
|
|
# "kernel-install" shouldn't be used on NixOS.
|
|
|
|
find $out -name "*kernel-install*" -exec rm {} \;
|
2015-04-18 17:53:59 +00:00
|
|
|
|
2016-09-05 16:59:00 +00:00
|
|
|
# Keep only libudev and libsystemd in the lib output.
|
|
|
|
mkdir -p $out/lib
|
|
|
|
mv $lib/lib/security $lib/lib/libnss* $out/lib/
|
|
|
|
''; # */
|
2012-05-21 20:48:19 +00:00
|
|
|
|
2015-10-03 18:52:03 +00:00
|
|
|
enableParallelBuilding = true;
|
2016-09-05 16:59:00 +00:00
|
|
|
|
2015-10-03 18:52:03 +00:00
|
|
|
/*
|
2014-08-30 21:30:31 +00:00
|
|
|
# some libs fail to link to liblzma and/or libffi
|
|
|
|
postFixup = let extraLibs = stdenv.lib.makeLibraryPath [ xz.out libffi.out zlib.out ];
|
|
|
|
in ''
|
|
|
|
for f in "$out"/lib/*.so.0.*; do
|
|
|
|
patchelf --set-rpath `patchelf --print-rpath "$f"`':${extraLibs}' "$f"
|
|
|
|
done
|
|
|
|
'';
|
2015-10-03 18:52:03 +00:00
|
|
|
*/
|
2014-08-30 17:11:52 +00:00
|
|
|
|
2012-07-20 19:41:37 +00:00
|
|
|
# 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.
|
|
|
|
passthru.interfaceVersion = 2;
|
|
|
|
|
2012-05-21 20:48:19 +00:00
|
|
|
meta = {
|
2012-09-27 08:54:44 +00:00
|
|
|
homepage = "http://www.freedesktop.org/wiki/Software/systemd";
|
2012-05-21 20:48:19 +00:00
|
|
|
description = "A system and service manager for Linux";
|
2012-09-11 17:44:28 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2012-05-21 20:48:19 +00:00
|
|
|
};
|
|
|
|
}
|