2012-08-10 22:09:28 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gperf, libcap, dbus, kmod
|
2012-11-29 18:50:07 +01:00
|
|
|
, xz, pam, acl, cryptsetup, libuuid, m4, utillinux
|
2013-01-08 18:11:56 +01:00
|
|
|
, glib, kbd, libxslt, coreutils, libgcrypt, sysvtools
|
2012-06-06 18:07:30 +02:00
|
|
|
}:
|
2012-05-21 22:48:19 +02:00
|
|
|
|
2012-07-20 16:44:19 +02:00
|
|
|
assert stdenv.gcc.libc or null != null;
|
|
|
|
|
2012-05-21 22:48:19 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2013-01-08 15:37:01 +01:00
|
|
|
name = "systemd-197";
|
2012-05-21 22:48:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.freedesktop.org/software/systemd/${name}.tar.xz";
|
2013-01-08 15:37:01 +01:00
|
|
|
sha256 = "1dbljyyc3w4a1af99f15f3sqnfx7mfmc5x5hwxb70kg23ai7x1g6";
|
2012-05-21 22:48:19 +02:00
|
|
|
};
|
|
|
|
|
2012-10-15 21:36:52 +02:00
|
|
|
patches =
|
2013-01-08 16:05:04 +01:00
|
|
|
[ ./0001-Make-systemctl-daemon-reexec-do-the-right-thing-on-N.patch
|
|
|
|
./0002-Ignore-duplicate-paths-in-systemctl-start.patch
|
|
|
|
./0003-Start-device-units-for-uninitialised-encrypted-devic.patch
|
|
|
|
./0004-Set-switch-to-configuration-hints-for-some-units.patch
|
|
|
|
./0005-sysinit.target-Drop-the-dependency-on-local-fs.targe.patch
|
2013-01-08 18:41:21 +01:00
|
|
|
./0006-Don-t-call-plymouth-quit.patch
|
2013-01-22 23:14:16 +01:00
|
|
|
] ++ stdenv.lib.optional stdenv.isArm ./libc-bug-accept4-arm.patch;
|
2012-08-09 16:51:48 +02:00
|
|
|
|
2012-05-21 22:48:19 +02:00
|
|
|
buildInputs =
|
2012-08-10 22:09:28 +02:00
|
|
|
[ pkgconfig intltool gperf libcap dbus kmod xz pam acl
|
2012-11-29 18:50:07 +01:00
|
|
|
/* cryptsetup */ libuuid m4 glib libxslt libgcrypt
|
2012-05-21 22:48:19 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--localstatedir=/var"
|
2012-06-04 05:21:12 +02:00
|
|
|
"--sysconfdir=/etc"
|
2012-05-21 22:48:19 +02:00
|
|
|
"--with-rootprefix=$(out)"
|
|
|
|
"--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"
|
2012-06-15 19:06:06 +02:00
|
|
|
"--with-firmware-path=/root/test-firmware:/var/run/current-system/firmware"
|
2012-06-19 21:58:49 +02:00
|
|
|
"--with-tty-gid=3" # tty in NixOS has gid 3
|
2012-05-21 22:48:19 +02:00
|
|
|
];
|
|
|
|
|
2012-06-04 05:21:12 +02:00
|
|
|
preConfigure =
|
|
|
|
''
|
2012-06-06 18:07:30 +02:00
|
|
|
# FIXME: patch this in systemd properly (and send upstream).
|
2013-01-08 18:11:56 +01:00
|
|
|
# FIXME: use sulogin from util-linux once updated.
|
|
|
|
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.m4.in; do
|
2012-06-06 18:07:30 +02:00
|
|
|
test -e $i
|
2012-06-04 05:21:12 +02:00
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /bin/mount ${utillinux}/bin/mount \
|
2012-06-06 18:07:30 +02:00
|
|
|
--replace /bin/umount ${utillinux}/bin/umount \
|
|
|
|
--replace /sbin/swapon ${utillinux}/sbin/swapon \
|
|
|
|
--replace /sbin/swapoff ${utillinux}/sbin/swapoff \
|
2013-01-08 18:11:56 +01:00
|
|
|
--replace /sbin/fsck ${utillinux}/sbin/fsck \
|
|
|
|
--replace /bin/echo ${coreutils}/bin/echo \
|
|
|
|
--replace /sbin/sulogin ${sysvtools}/sbin/sulogin
|
2012-06-04 05:21:12 +02:00
|
|
|
done
|
2012-11-29 18:50:07 +01:00
|
|
|
|
|
|
|
substituteInPlace src/journal/catalog.c \
|
|
|
|
--replace /usr/lib/systemd/catalog/ $out/lib/systemd/catalog/
|
2012-06-04 05:21:12 +02:00
|
|
|
'';
|
|
|
|
|
2013-01-08 15:37:01 +01:00
|
|
|
PYTHON_BINARY = "${coreutils}/bin/env python"; # don't want a build time dependency on Python
|
|
|
|
|
2012-08-21 14:33:10 +02:00
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
[ "-DKBD_LOADKEYS=\"${kbd}/bin/loadkeys\""
|
|
|
|
"-DKBD_SETFONT=\"${kbd}/bin/setfont\""
|
|
|
|
# Can't say ${polkit}/bin/pkttyagent here because that would
|
|
|
|
# lead to a cyclic dependency.
|
|
|
|
"-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\""
|
|
|
|
"-fno-stack-protector"
|
2012-10-11 18:33:47 +02:00
|
|
|
# Work around our kernel headers being too old. FIXME: remove
|
|
|
|
# this after the next stdenv update.
|
|
|
|
"-DFS_NOCOW_FL=0x00800000"
|
2012-08-21 14:33:10 +02:00
|
|
|
];
|
2012-06-15 00:10:52 +02:00
|
|
|
|
2012-11-29 18:50:07 +01: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.
|
|
|
|
makeFlags = "CPPFLAGS=-I${stdenv.gcc.libc}/include hwdb_bin=/var/lib/udev/hwdb.bin";
|
2012-07-20 16:44:19 +02:00
|
|
|
|
2012-10-23 13:51:13 +02:00
|
|
|
installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc sysvinitdir=$(TMPDIR)/etc/init.d";
|
2012-06-04 05:21:12 +02:00
|
|
|
|
|
|
|
# Get rid of configuration-specific data.
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
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 00:10:52 +02: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 16:51:48 +02:00
|
|
|
ln -s $out/bin/systemctl $out/sbin/$i
|
2012-06-15 00:10:52 +02:00
|
|
|
done
|
2012-10-04 17:10:51 +02: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 18:50:07 +01:00
|
|
|
|
|
|
|
rm -rf $out/etc/rpm
|
2012-10-04 17:10:51 +02:00
|
|
|
''; # */
|
2012-05-21 22:48:19 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-08-09 16:51:48 +02:00
|
|
|
|
2012-07-20 21:41:37 +02: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 22:48:19 +02:00
|
|
|
meta = {
|
2012-09-27 10:54:44 +02:00
|
|
|
homepage = "http://www.freedesktop.org/wiki/Software/systemd";
|
2012-05-21 22:48:19 +02:00
|
|
|
description = "A system and service manager for Linux";
|
2012-09-11 19:44:28 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-09-28 17:47:01 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.simons ];
|
2012-05-21 22:48:19 +02:00
|
|
|
};
|
|
|
|
}
|