From a2f21a54a1711ad8090ec0e4b67c0f08ffe734bc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 26 May 2016 16:09:38 +0200 Subject: [PATCH] systemd: 229 -> 230 See https://github.com/systemd/systemd/blob/v230/NEWS for details. The main incompatible change is that processes are now killed by default when you exit a session. Thus, for example, using nohup in an SSH session no longer works. You have to use "loginctl enable-linger" and "systemd-run --user" to create a process that survives logout. --- pkgs/os-specific/linux/systemd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 15ec3202e6b..f5dc3145b68 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -10,14 +10,14 @@ assert stdenv.isLinux; stdenv.mkDerivation rec { - version = "229"; + version = "230"; name = "systemd-${version}"; src = fetchFromGitHub { owner = "NixOS"; repo = "systemd"; - rev = "4936f6e6c05162516a685ebd227b55816cf2b670"; - sha256 = "1q0pyrljmq73qcan9rfqsiw66l1g159m5in5qgb8zwlwhl928670"; + rev = "4ccee551f2ba8383c8b9bd06590a3cd1dfdf690f"; + sha256 = "1i4my5z7f8g5bykv1vxyw1az66s087lfqrck79kdm4hgvb4lsk6y"; }; patches = [ ./hwdb-location.diff ];