aboutsummaryrefslogtreecommitdiff
path: root/pkgs/os-specific/linux/systemd
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2019-05-06 08:44:02 +0200
committerAndreas Rammhold <andreas@rammhold.de>2019-06-03 15:05:11 +0200
commit8c7e588362e708ade5e782c09dbdf84d06ab4254 (patch)
treed6f7d0c78831a063f47d2d69a1daf1354c1ed6c8 /pkgs/os-specific/linux/systemd
parent2a0f85d882621c28b7bcfc8cbd0c9069c60bbd09 (diff)
systemd: 241.20190221 -> 242
Diffstat (limited to 'pkgs/os-specific/linux/systemd')
-rw-r--r--pkgs/os-specific/linux/systemd/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index 69910d79d65..cc708cb4a89 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -15,7 +15,7 @@
}:
stdenv.mkDerivation rec {
- version = "241.20190221";
+ version = "242";
name = "systemd-${version}";
# When updating, use https://github.com/systemd/systemd-stable tree, not the development one!
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
owner = "NixOS";
repo = "systemd";
rev = "nixos-v${version}";
- sha256 = "0grcf0x793k1jx4bx7p63h3f3cd8w262824mzf8iwdsy6y9wzylr";
+ sha256 = "0ldyhfxdy4qlgygvpc92wp0qp6p1c9y3rnm77zwbkga48x60d9i8";
};
outputs = [ "out" "lib" "man" "dev" ];
@@ -104,7 +104,7 @@ stdenv.mkDerivation rec {
export LC_ALL="en_US.UTF-8";
# FIXME: patch this in systemd properly (and send upstream).
# already fixed in f00929ad622c978f8ad83590a15a765b4beecac9: (u)mount
- 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
+ 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/shutdown/shutdown.c src/nspawn/nspawn.c src/shared/generator.c; do
test -e $i
substituteInPlace $i \
--replace /usr/bin/getent ${getent}/bin/getent \
@@ -186,7 +186,7 @@ stdenv.mkDerivation rec {
# 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;
+ passthru.interfaceVersion = 3;
meta = with stdenv.lib; {
homepage = http://www.freedesktop.org/wiki/Software/systemd;