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:
parent
b37d6d8996
commit
a2f21a54a1
@ -10,14 +10,14 @@
|
|||||||
assert stdenv.isLinux;
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "229";
|
version = "230";
|
||||||
name = "systemd-${version}";
|
name = "systemd-${version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "NixOS";
|
owner = "NixOS";
|
||||||
repo = "systemd";
|
repo = "systemd";
|
||||||
rev = "4936f6e6c05162516a685ebd227b55816cf2b670";
|
rev = "4ccee551f2ba8383c8b9bd06590a3cd1dfdf690f";
|
||||||
sha256 = "1q0pyrljmq73qcan9rfqsiw66l1g159m5in5qgb8zwlwhl928670";
|
sha256 = "1i4my5z7f8g5bykv1vxyw1az66s087lfqrck79kdm4hgvb4lsk6y";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./hwdb-location.diff ];
|
patches = [ ./hwdb-location.diff ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user