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.
This commit is contained in:
Eelco Dolstra 2016-05-26 16:09:38 +02:00
parent b37d6d8996
commit a2f21a54a1

View file

@ -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 ];