2012-08-10 22:09:28 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gperf, libcap, dbus, kmod
|
2012-06-06 18:07:30 +02:00
|
|
|
, xz, pam, acl, cryptsetup, libuuid, m4, utillinux, usbutils, pciutils
|
2012-09-21 19:28:14 +02:00
|
|
|
, glib, kbd, libxslt
|
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 {
|
2012-09-26 03:05:12 +02:00
|
|
|
name = "systemd-192";
|
2012-05-21 22:48:19 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.freedesktop.org/software/systemd/${name}.tar.xz";
|
2012-09-26 03:05:12 +02:00
|
|
|
sha256 = "03y3y1w3x7bx67jvdxryhns3h1g6nrllln46gqipp35n99alki2m";
|
2012-05-21 22:48:19 +02:00
|
|
|
};
|
|
|
|
|
2012-09-27 10:53:25 +02:00
|
|
|
patches = [ ./reexec.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-09-21 19:28:14 +02:00
|
|
|
/* cryptsetup */ libuuid m4 usbutils pciutils glib libxslt
|
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-distro=other"
|
|
|
|
"--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"
|
|
|
|
"--with-pci-ids-path=${pciutils}/share/pci.ids"
|
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).
|
|
|
|
for i in src/remount-fs/remount-fs.c src/core/mount.c src/core/swap.c src/fsck/fsck.c; do
|
|
|
|
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 \
|
|
|
|
--replace /sbin/fsck ${utillinux}/sbin/fsck
|
2012-06-04 05:21:12 +02:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
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-06-15 00:10:52 +02:00
|
|
|
|
2012-07-20 16:44:19 +02:00
|
|
|
makeFlags = "CPPFLAGS=-I${stdenv.gcc.libc}/include";
|
|
|
|
|
2012-06-04 05:21:12 +02:00
|
|
|
installFlags = "localstatedir=$(TMPDIR)/var sysconfdir=$(out)/etc";
|
|
|
|
|
|
|
|
# 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-06-04 05:21:12 +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 = {
|
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/systemd;
|
|
|
|
description = "A system and service manager for Linux";
|
2012-09-11 19:44:28 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-05-21 22:48:19 +02:00
|
|
|
};
|
|
|
|
}
|