2015-09-08 14:07:23 +03:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, intltool, gperf, libcap, dbus, kmod
|
2012-11-29 21:50:07 +04:00
|
|
|
, xz, pam, acl, cryptsetup, libuuid, m4, utillinux
|
2015-04-12 22:47:51 +03:00
|
|
|
, glib, kbd, libxslt, coreutils, libgcrypt, libapparmor, audit, lz4
|
2015-05-22 16:55:55 +03:00
|
|
|
, kexectools, libmicrohttpd, linuxHeaders, libseccomp
|
2015-09-08 01:01:39 +03:00
|
|
|
, autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45
|
2015-11-14 23:32:51 +03:00
|
|
|
, enableKDbus ? false
|
2012-06-06 20:07:30 +04:00
|
|
|
}:
|
2012-05-22 00:48:19 +04:00
|
|
|
|
2013-06-18 00:06:36 +04:00
|
|
|
assert stdenv.isLinux;
|
|
|
|
|
2016-02-01 20:15:29 +03:00
|
|
|
# FIXME: When updating, please remove makeFlags -- `hwdb_bin` flag is not supported anymore.
|
|
|
|
|
2012-05-22 00:48:19 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2015-12-07 22:24:02 +03:00
|
|
|
version = "228";
|
2013-03-23 22:13:36 +04:00
|
|
|
name = "systemd-${version}";
|
2012-05-22 00:48:19 +04:00
|
|
|
|
2015-09-08 14:07:23 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "NixOS";
|
|
|
|
repo = "systemd";
|
2015-12-18 20:02:16 +03:00
|
|
|
rev = "b737c07cc0234acfa87282786025d556bca91c3f";
|
|
|
|
sha256 = "0wca8zkn39914c232andvf3v0ni6ylv154kz3s9fcvg47rhpd5n1";
|
2012-05-22 00:48:19 +04:00
|
|
|
};
|
|
|
|
|
2015-10-07 22:48:30 +03:00
|
|
|
outputs = [ "out" "man" "doc" ];
|
2012-08-09 18:51:48 +04:00
|
|
|
|
2013-06-18 00:06:36 +04:00
|
|
|
buildInputs =
|
2015-05-22 16:34:08 +03:00
|
|
|
[ linuxHeaders pkgconfig intltool gperf libcap kmod xz pam acl
|
2014-08-24 12:04:55 +04:00
|
|
|
/* cryptsetup */ libuuid m4 glib libxslt libgcrypt
|
2015-04-12 22:47:51 +03:00
|
|
|
libmicrohttpd kexectools libseccomp audit lz4 libapparmor
|
2015-09-08 01:01:39 +03: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 19:31:36 +03:00
|
|
|
];
|
2012-05-22 00:48:19 +04:00
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--localstatedir=/var"
|
2012-06-04 07:21:12 +04:00
|
|
|
"--sysconfdir=/etc"
|
2012-05-22 00:48:19 +04:00
|
|
|
"--with-rootprefix=$(out)"
|
2013-02-03 05:21:40 +04:00
|
|
|
"--with-kbd-loadkeys=${kbd}/bin/loadkeys"
|
|
|
|
"--with-kbd-setfont=${kbd}/bin/setfont"
|
2012-05-22 00:48:19 +04: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 23:58:49 +04:00
|
|
|
"--with-tty-gid=3" # tty in NixOS has gid 3
|
2014-04-16 02:59:26 +04:00
|
|
|
"--enable-compat-libs" # get rid of this eventually
|
2014-05-01 16:16:58 +04:00
|
|
|
"--disable-tests"
|
2014-08-24 01:28:03 +04:00
|
|
|
|
2015-04-12 22:47:51 +03:00
|
|
|
"--enable-lz4"
|
2015-12-06 16:30:18 +03:00
|
|
|
"--enable-hostnamed"
|
2014-11-20 00:17:21 +03:00
|
|
|
"--enable-networkd"
|
2014-08-24 01:28:03 +04:00
|
|
|
"--disable-sysusers"
|
2015-12-06 16:30:18 +03:00
|
|
|
"--enable-timedated"
|
2014-11-20 00:17:21 +03:00
|
|
|
"--enable-timesyncd"
|
2014-08-24 01:28:03 +04:00
|
|
|
"--disable-firstboot"
|
2015-12-06 16:30:18 +03:00
|
|
|
"--enable-localed"
|
2014-11-20 00:17:21 +03:00
|
|
|
"--enable-resolved"
|
2014-08-24 01:28:03 +04:00
|
|
|
"--disable-split-usr"
|
2015-05-11 15:41:41 +03:00
|
|
|
"--disable-libcurl"
|
|
|
|
"--disable-libidn"
|
|
|
|
"--disable-quotacheck"
|
|
|
|
"--disable-ldconfig"
|
2015-09-08 01:01:39 +03:00
|
|
|
"--disable-smack"
|
2014-08-24 01:28:03 +04:00
|
|
|
|
|
|
|
"--with-sysvinit-path="
|
|
|
|
"--with-sysvrcnd-path="
|
|
|
|
"--with-rc-local-script-path-stop=/etc/halt.local"
|
2015-11-14 23:32:51 +03:00
|
|
|
] ++ stdenv.lib.optional enableKDbus "--enable-kdbus";
|
2012-05-22 00:48:19 +04:00
|
|
|
|
2012-06-04 07:21:12 +04:00
|
|
|
preConfigure =
|
|
|
|
''
|
2015-09-08 01:01:39 +03:00
|
|
|
./autogen.sh
|
|
|
|
|
2012-06-06 20:07:30 +04:00
|
|
|
# FIXME: patch this in systemd properly (and send upstream).
|
2015-06-02 01:49:42 +03: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 20:07:30 +04:00
|
|
|
test -e $i
|
2012-06-04 07:21:12 +04:00
|
|
|
substituteInPlace $i \
|
2014-04-16 02:59:26 +04:00
|
|
|
--replace /usr/bin/getent ${stdenv.glibc}/bin/getent \
|
2012-06-04 07:21:12 +04:00
|
|
|
--replace /bin/mount ${utillinux}/bin/mount \
|
2012-06-06 20:07:30 +04:00
|
|
|
--replace /bin/umount ${utillinux}/bin/umount \
|
|
|
|
--replace /sbin/swapon ${utillinux}/sbin/swapon \
|
|
|
|
--replace /sbin/swapoff ${utillinux}/sbin/swapoff \
|
2013-01-08 21:11:56 +04:00
|
|
|
--replace /bin/echo ${coreutils}/bin/echo \
|
2013-04-25 01:46:09 +04:00
|
|
|
--replace /bin/cat ${coreutils}/bin/cat \
|
2015-04-20 00:01:50 +03:00
|
|
|
--replace /sbin/sulogin ${utillinux}/sbin/sulogin \
|
2015-06-02 01:49:42 +03:00
|
|
|
--replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck
|
2012-06-04 07:21:12 +04:00
|
|
|
done
|
2012-11-29 21:50:07 +04:00
|
|
|
|
|
|
|
substituteInPlace src/journal/catalog.c \
|
|
|
|
--replace /usr/lib/systemd/catalog/ $out/lib/systemd/catalog/
|
2015-07-01 12:19:03 +03: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 07:21:12 +04:00
|
|
|
'';
|
|
|
|
|
2013-01-08 18:37:01 +04:00
|
|
|
PYTHON_BINARY = "${coreutils}/bin/env python"; # don't want a build time dependency on Python
|
|
|
|
|
2012-08-21 16:33:10 +04:00
|
|
|
NIX_CFLAGS_COMPILE =
|
2013-02-03 05:21:40 +04:00
|
|
|
[ # Can't say ${polkit}/bin/pkttyagent here because that would
|
2012-08-21 16:33:10 +04:00
|
|
|
# lead to a cyclic dependency.
|
2013-04-12 16:31:53 +04:00
|
|
|
"-UPOLKIT_AGENT_BINARY_PATH" "-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\""
|
2012-08-21 16:33:10 +04:00
|
|
|
"-fno-stack-protector"
|
2013-04-12 16:31:53 +04: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-24 01:28:03 +04:00
|
|
|
|
|
|
|
"-USYSTEMD_BINARY_PATH" "-DSYSTEMD_BINARY_PATH=\"/run/current-system/systemd/lib/systemd/systemd\""
|
2012-08-21 16:33:10 +04:00
|
|
|
];
|
2012-06-15 02:10:52 +04:00
|
|
|
|
2012-11-29 21:50:07 +04: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 16:58:31 +04:00
|
|
|
makeFlags = "hwdb_bin=/var/lib/udev/hwdb.bin";
|
2012-07-20 18:44:19 +04:00
|
|
|
|
2014-04-16 02:59:26 +04:00
|
|
|
installFlags =
|
|
|
|
[ "localstatedir=$(TMPDIR)/var"
|
|
|
|
"sysconfdir=$(out)/etc"
|
|
|
|
"sysvinitdir=$(TMPDIR)/etc/init.d"
|
|
|
|
"pamconfdir=$(out)/etc/pam.d"
|
|
|
|
];
|
2012-06-04 07:21:12 +04:00
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
2014-08-24 01:28:03 +04: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 07:21:12 +04: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-15 02:10:52 +04:00
|
|
|
|
2014-04-16 02:59:26 +04:00
|
|
|
rm -rf $out/etc/systemd/system
|
|
|
|
|
2012-06-15 02:10:52 +04: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 18:51:48 +04:00
|
|
|
ln -s $out/bin/systemctl $out/sbin/$i
|
2012-06-15 02:10:52 +04:00
|
|
|
done
|
2012-10-04 19:10:51 +04: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 21:50:07 +04:00
|
|
|
|
|
|
|
rm -rf $out/etc/rpm
|
2015-05-13 18:11:36 +03:00
|
|
|
|
|
|
|
rm $out/lib/*.la
|
2015-05-22 17:39:42 +03:00
|
|
|
|
|
|
|
# "kernel-install" shouldn't be used on NixOS.
|
|
|
|
find $out -name "*kernel-install*" -exec rm {} \;
|
2012-10-04 19:10:51 +04:00
|
|
|
''; # */
|
2012-05-22 00:48:19 +04:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-08-09 18:51:48 +04:00
|
|
|
|
2012-07-20 23:41:37 +04: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-22 00:48:19 +04:00
|
|
|
meta = {
|
2012-09-27 12:54:44 +04:00
|
|
|
homepage = "http://www.freedesktop.org/wiki/Software/systemd";
|
2012-05-22 00:48:19 +04:00
|
|
|
description = "A system and service manager for Linux";
|
2012-09-11 21:44:28 +04:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-09-28 19:47:01 +04:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.simons ];
|
2012-05-22 00:48:19 +04:00
|
|
|
};
|
|
|
|
}
|