Skip to content

Commit ae26f29

Browse files
committed
systemd: 233 -> 234
1 parent 2113631 commit ae26f29

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

pkgs/os-specific/linux/systemd/default.nix

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
assert stdenv.isLinux;
1010

1111
stdenv.mkDerivation rec {
12-
version = "233";
12+
version = "234";
1313
name = "systemd-${version}";
1414

1515
src = fetchFromGitHub {
1616
owner = "nixos";
1717
repo = "systemd";
18-
rev = "72782e7ad96f9da9b0e5873f87a64007068cee06";
19-
sha256 = "1cj20zrfr8g0vkxiv3h9bbd89xbj3mrsij3rjr1lbh4nkl5mcwpa";
18+
rev = "ba777535a890c2a2b7677dfacc63e12c578b9b3f";
19+
sha256 = "1cj20zrfr8g0vkxiv3h9bbd89xbj3mrsij3rja1lbh4nkl5mcwpa";
2020
};
2121

2222
outputs = [ "out" "lib" "man" "dev" ];
@@ -99,8 +99,6 @@ stdenv.mkDerivation rec {
9999
--replace /usr/lib/systemd/catalog/ $out/lib/systemd/catalog/
100100
101101
configureFlagsArray+=("--with-ntp-servers=0.nixos.pool.ntp.org 1.nixos.pool.ntp.org 2.nixos.pool.ntp.org 3.nixos.pool.ntp.org")
102-
103-
#export NIX_CFLAGS_LINK+=" -Wl,-rpath,$libudev/lib"
104102
'';
105103

106104
PYTHON_BINARY = "${coreutils}/bin/env python"; # don't want a build time dependency on Python
@@ -166,16 +164,6 @@ stdenv.mkDerivation rec {
166164

167165
enableParallelBuilding = true;
168166

169-
/*
170-
# some libs fail to link to liblzma and/or libffi
171-
postFixup = let extraLibs = stdenv.lib.makeLibraryPath [ xz.out libffi.out zlib.out ];
172-
in ''
173-
for f in "$out"/lib/*.so.0.*; do
174-
patchelf --set-rpath `patchelf --print-rpath "$f"`':${extraLibs}' "$f"
175-
done
176-
'';
177-
*/
178-
179167
# The interface version prevents NixOS from switching to an
180168
# incompatible systemd at runtime. (Switching across reboots is
181169
# fine, of course.) It should be increased whenever systemd changes

0 commit comments

Comments
 (0)