2012-08-10 20:09:28 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gperf, libcap, dbus, kmod
|
2012-11-29 17:50:07 +00:00
|
|
|
, xz, pam, acl, cryptsetup, libuuid, m4, utillinux
|
2015-04-19 21:01:50 +00:00
|
|
|
, glib, kbd, libxslt, coreutils, libgcrypt
|
2014-04-15 22:59:26 +00:00
|
|
|
, kexectools, libmicrohttpd, linuxHeaders
|
2014-05-17 10:10:07 +00:00
|
|
|
, pythonPackages ? null, pythonSupport ? 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;
|
|
|
|
|
2014-05-17 10:10:07 +00:00
|
|
|
assert pythonSupport -> pythonPackages != null;
|
2013-10-12 17:31:44 +00:00
|
|
|
|
2012-05-21 20:48:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-04 14:43:12 +00:00
|
|
|
version = "217";
|
2013-03-23 18:13:36 +00:00
|
|
|
name = "systemd-${version}";
|
2012-05-21 20:48:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.freedesktop.org/software/systemd/${name}.tar.xz";
|
2014-11-04 14:43:12 +00:00
|
|
|
sha256 = "163l1y4p2a564d4ynfq3k3xf53j2v5s81blb6cvpn1y7rpxyccd0";
|
2012-05-21 20:48:19 +00:00
|
|
|
};
|
|
|
|
|
2012-10-15 19:36:52 +00:00
|
|
|
patches =
|
2013-10-14 09:53:17 +00:00
|
|
|
[ # These are all changes between upstream and
|
2015-08-24 12:16:59 +00:00
|
|
|
# https://github.com/NixOS/systemd/tree/nixos-v217.
|
2013-10-14 09:53:17 +00:00
|
|
|
./fixes.patch
|
2014-04-15 22:59:26 +00:00
|
|
|
];
|
2012-08-09 14:51:48 +00:00
|
|
|
|
2013-06-17 20:06:36 +00:00
|
|
|
buildInputs =
|
2014-04-15 22:59:26 +00:00
|
|
|
[ pkgconfig intltool gperf libcap kmod xz pam acl
|
2014-08-24 08:04:55 +00:00
|
|
|
/* cryptsetup */ libuuid m4 glib libxslt libgcrypt
|
2014-04-15 22:59:26 +00:00
|
|
|
libmicrohttpd linuxHeaders
|
2014-05-17 10:10:07 +00:00
|
|
|
] ++ stdenv.lib.optionals pythonSupport [pythonPackages.python pythonPackages.lxml];
|
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-dbusinterfacedir=$(out)/share/dbus-1/interfaces"
|
|
|
|
"--with-dbuspolicydir=$(out)/etc/dbus-1/system.d"
|
|
|
|
"--with-dbussystemservicedir=$(out)/share/dbus-1/system-services"
|
|
|
|
"--with-dbussessionservicedir=$(out)/share/dbus-1/services"
|
2013-03-27 21:56:17 +00:00
|
|
|
"--with-firmware-path=/root/test-firmware:/run/current-system/firmware"
|
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
|
|
|
|
|
|
|
"--disable-hostnamed"
|
2014-11-19 21:17:21 +00:00
|
|
|
"--enable-networkd"
|
2014-08-23 21:28:03 +00:00
|
|
|
"--disable-sysusers"
|
|
|
|
"--disable-timedated"
|
2014-11-19 21:17:21 +00:00
|
|
|
"--enable-timesyncd"
|
2014-08-23 21:28:03 +00:00
|
|
|
"--disable-readahead"
|
|
|
|
"--disable-firstboot"
|
|
|
|
"--disable-localed"
|
2014-11-19 21:17:21 +00:00
|
|
|
"--enable-resolved"
|
2014-08-23 21:28:03 +00:00
|
|
|
"--disable-split-usr"
|
|
|
|
|
|
|
|
"--with-sysvinit-path="
|
|
|
|
"--with-sysvrcnd-path="
|
|
|
|
"--with-rc-local-script-path-stop=/etc/halt.local"
|
2012-05-21 20:48:19 +00:00
|
|
|
];
|
|
|
|
|
2012-06-04 03:21:12 +00:00
|
|
|
preConfigure =
|
|
|
|
''
|
2012-06-06 16:07:30 +00:00
|
|
|
# FIXME: patch this in systemd properly (and send upstream).
|
2013-01-08 17:11:56 +00:00
|
|
|
# FIXME: use sulogin from util-linux once updated.
|
2015-05-13 13:29:29 +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; do
|
2012-06-06 16:07:30 +00:00
|
|
|
test -e $i
|
2012-06-04 03:21:12 +00:00
|
|
|
substituteInPlace $i \
|
2014-04-15 22:59:26 +00:00
|
|
|
--replace /usr/bin/getent ${stdenv.glibc}/bin/getent \
|
2012-06-04 03:21:12 +00:00
|
|
|
--replace /bin/mount ${utillinux}/bin/mount \
|
2012-06-06 16:07:30 +00:00
|
|
|
--replace /bin/umount ${utillinux}/bin/umount \
|
|
|
|
--replace /sbin/swapon ${utillinux}/sbin/swapon \
|
|
|
|
--replace /sbin/swapoff ${utillinux}/sbin/swapoff \
|
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-04-19 21:01:50 +00:00
|
|
|
--replace /sbin/sulogin ${utillinux}/sbin/sulogin \
|
2013-09-16 12:20:14 +00:00
|
|
|
--replace /sbin/kexec ${kexectools}/sbin/kexec
|
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/
|
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")
|
2012-06-04 03:21:12 +00:00
|
|
|
'';
|
|
|
|
|
2014-04-15 22:59:26 +00:00
|
|
|
# This is needed because systemd uses the gold linker, which doesn't
|
|
|
|
# yet have the wrapper script to add rpath flags automatically.
|
2015-01-15 04:25:26 +00:00
|
|
|
NIX_LDFLAGS = "-rpath ${pam}/lib -rpath ${libcap}/lib -rpath ${acl}/lib -rpath ${stdenv.cc.cc}/lib";
|
2014-04-15 22:59:26 +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 =
|
2013-02-03 01:21:40 +00:00
|
|
|
[ # Can't say ${polkit}/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
|
|
|
|
2012-11-29 17:50:07 +00:00
|
|
|
# Use /var/lib/udev rather than /etc/udev for the generated hardware
|
|
|
|
# database. Upstream doesn't want this (see commit
|
|
|
|
# 1e1954f53386cb773e2a152748dd31c4d36aa2d8) because using /var is
|
|
|
|
# forbidden in early boot, but in NixOS the initrd guarantees that
|
|
|
|
# /var is mounted.
|
2013-03-27 12:58:31 +00:00
|
|
|
makeFlags = "hwdb_bin=/var/lib/udev/hwdb.bin";
|
2012-07-20 14:44:19 +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/
|
|
|
|
|
2012-06-04 03:21:12 +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
|
2012-10-04 15:10:51 +00:00
|
|
|
''; # */
|
2012-05-21 20:48:19 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-08-09 14:51:48 +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;
|
2012-09-28 15:47:01 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.simons ];
|
2012-05-21 20:48:19 +00:00
|
|
|
};
|
|
|
|
}
|