2012-08-10 21:09:28 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gperf, libcap, dbus, kmod
|
2012-11-29 17:50:07 +00:00
|
|
|
, xz, pam, acl, cryptsetup, libuuid, m4, utillinux
|
2013-03-27 12:58:31 +00:00
|
|
|
, glib, kbd, libxslt, coreutils, libgcrypt, sysvtools, docbook_xsl
|
2013-09-16 13:20:14 +01:00
|
|
|
, kexectools
|
2012-06-06 17:07:30 +01:00
|
|
|
}:
|
2012-05-21 21:48:19 +01:00
|
|
|
|
2013-06-17 21:06:36 +01:00
|
|
|
assert stdenv.isLinux;
|
2013-05-09 12:58:08 +01:00
|
|
|
|
2012-05-21 21:48:19 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-05-08 12:46:46 +01:00
|
|
|
version = "203";
|
2013-03-23 18:13:36 +00:00
|
|
|
name = "systemd-${version}";
|
2012-05-21 21:48:19 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.freedesktop.org/software/systemd/${name}.tar.xz";
|
2013-05-07 13:05:28 +01:00
|
|
|
sha256 = "07gvn3rpski8sh1nz16npjf2bvj0spsjdwc5px9685g2pi6kxcb1";
|
2012-05-21 21:48:19 +01:00
|
|
|
};
|
|
|
|
|
2013-06-26 12:34:55 +01:00
|
|
|
outputs = [ "out" "man" "libudev" ];
|
|
|
|
|
2012-10-15 20:36:52 +01:00
|
|
|
patches =
|
2013-10-14 10:53:17 +01:00
|
|
|
[ # These are all changes between upstream and
|
|
|
|
# https://github.com/edolstra/systemd/tree/nixos-v203.
|
|
|
|
./fixes.patch
|
|
|
|
]
|
|
|
|
++ stdenv.lib.optional stdenv.isArm ./libc-bug-accept4-arm.patch;
|
2012-08-09 15:51:48 +01:00
|
|
|
|
2013-05-09 12:58:08 +01:00
|
|
|
buildInputs =
|
2013-03-23 18:13:36 +00:00
|
|
|
[ pkgconfig intltool gperf libcap dbus.libs kmod xz pam acl
|
2013-03-27 12:58:31 +00:00
|
|
|
/* cryptsetup */ libuuid m4 glib libxslt libgcrypt docbook_xsl
|
2012-05-21 21:48:19 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
[ "--localstatedir=/var"
|
2012-06-04 04:21:12 +01:00
|
|
|
"--sysconfdir=/etc"
|
2012-05-21 21:48:19 +01: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 21:48:19 +01: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 20:58:49 +01:00
|
|
|
"--with-tty-gid=3" # tty in NixOS has gid 3
|
2012-05-21 21:48:19 +01:00
|
|
|
];
|
|
|
|
|
2012-06-04 04:21:12 +01:00
|
|
|
preConfigure =
|
|
|
|
''
|
2012-06-06 17:07:30 +01: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.
|
2013-09-16 13:20:14 +01: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.m4.in src/journal/cat.c src/core/shutdown.c; do
|
2012-06-06 17:07:30 +01:00
|
|
|
test -e $i
|
2012-06-04 04:21:12 +01:00
|
|
|
substituteInPlace $i \
|
2013-06-12 16:12:44 +01: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 22:46:09 +01:00
|
|
|
--replace /bin/cat ${coreutils}/bin/cat \
|
2013-09-16 13:20:14 +01:00
|
|
|
--replace /sbin/sulogin ${sysvtools}/sbin/sulogin \
|
|
|
|
--replace /sbin/kexec ${kexectools}/sbin/kexec
|
2012-06-04 04:21:12 +01: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 12:34:55 +01:00
|
|
|
|
|
|
|
export NIX_CFLAGS_LINK+=" -Wl,-rpath,$libudev/lib"
|
2012-06-04 04:21:12 +01: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 13:33:10 +01: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 13:33:10 +01:00
|
|
|
# lead to a cyclic dependency.
|
2013-04-12 13:31:53 +01:00
|
|
|
"-UPOLKIT_AGENT_BINARY_PATH" "-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\""
|
2012-08-21 13:33:10 +01:00
|
|
|
"-fno-stack-protector"
|
2013-04-12 13:31:53 +01:00
|
|
|
|
2012-10-11 17:33:47 +01:00
|
|
|
# Work around our kernel headers being too old. FIXME: remove
|
|
|
|
# this after the next stdenv update.
|
|
|
|
"-DFS_NOCOW_FL=0x00800000"
|
2013-04-12 13:31:53 +01: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\""
|
2012-08-21 13:33:10 +01:00
|
|
|
];
|
2012-06-14 23:10:52 +01: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 15:44:19 +01:00
|
|
|
|
2012-10-23 12:51:13 +01:00
|
|
|
installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc sysvinitdir=$(TMPDIR)/etc/init.d";
|
2012-06-04 04:21:12 +01: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-14 23:10:52 +01: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 15:51:48 +01:00
|
|
|
ln -s $out/bin/systemctl $out/sbin/$i
|
2012-06-14 23:10:52 +01:00
|
|
|
done
|
2012-10-04 16:10:51 +01: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 12:34:55 +01:00
|
|
|
|
|
|
|
# Move libudev to a separate output.
|
|
|
|
mkdir -p $libudev/lib/pkgconfig $libudev/include
|
|
|
|
mv $out/lib/libudev* $libudev/lib/
|
|
|
|
mv $out/lib/pkgconfig/libudev*.pc $libudev/lib/pkgconfig/
|
|
|
|
mv $out/include/libudev.h $libudev/include/
|
|
|
|
|
|
|
|
for i in $libudev/lib/*.la $libudev/lib/pkgconfig/*.pc; do
|
|
|
|
substituteInPlace $i --replace $out $libudev
|
|
|
|
done
|
2012-10-04 16:10:51 +01:00
|
|
|
''; # */
|
2012-05-21 21:48:19 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-08-09 15:51:48 +01:00
|
|
|
|
2012-07-20 20:41:37 +01: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;
|
|
|
|
|
2013-03-23 18:13:36 +00:00
|
|
|
passthru.headers = stdenv.mkDerivation {
|
|
|
|
name = "systemd-headers-${version}";
|
|
|
|
inherit src;
|
|
|
|
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
|
|
|
|
# some are needed by dbus.libs, which is needed for systemd :-)
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/include/systemd"
|
|
|
|
mv src/systemd/*.h "$out/include/systemd"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2012-05-21 21:48:19 +01:00
|
|
|
meta = {
|
2012-09-27 09:54:44 +01:00
|
|
|
homepage = "http://www.freedesktop.org/wiki/Software/systemd";
|
2012-05-21 21:48:19 +01:00
|
|
|
description = "A system and service manager for Linux";
|
2012-09-11 18:44:28 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-09-28 16:47:01 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.simons ];
|
2012-05-21 21:48:19 +01:00
|
|
|
};
|
|
|
|
}
|