summary refs log tree commit diff
path: root/pkgs/os-specific/linux/systemd
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-09-21 22:46:35 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-09-21 22:46:35 -0400
commitfae03557fb0a00e87d22ce94ff274b47730f0950 (patch)
tree712f342b0d76a8ad8682c709f7aa82946a1364bb /pkgs/os-specific/linux/systemd
parentbeb5b65e9cf621ec5c58177d7a4273ef4f6cb5fc (diff)
downloadnixpkgs-fae03557fb0a00e87d22ce94ff274b47730f0950.tar
nixpkgs-fae03557fb0a00e87d22ce94ff274b47730f0950.tar.gz
nixpkgs-fae03557fb0a00e87d22ce94ff274b47730f0950.tar.bz2
nixpkgs-fae03557fb0a00e87d22ce94ff274b47730f0950.tar.lz
nixpkgs-fae03557fb0a00e87d22ce94ff274b47730f0950.tar.xz
nixpkgs-fae03557fb0a00e87d22ce94ff274b47730f0950.tar.zst
nixpkgs-fae03557fb0a00e87d22ce94ff274b47730f0950.zip
systemd: Update to 191
Diffstat (limited to 'pkgs/os-specific/linux/systemd')
-rw-r--r--pkgs/os-specific/linux/systemd/default.nix6
-rw-r--r--pkgs/os-specific/linux/systemd/name_to_handle_at.patch21
2 files changed, 3 insertions, 24 deletions
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index bfc16871857..752efed6b58 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -6,14 +6,14 @@
 assert stdenv.gcc.libc or null != null;
 
 stdenv.mkDerivation rec {
-  name = "systemd-190";
+  name = "systemd-191";
 
   src = fetchurl {
     url = "http://www.freedesktop.org/software/systemd/${name}.tar.xz";
-    sha256 = "1p3pf8gvx43g62l9x85l8ym12wc373cmaysi41sahjndp2agicig";
+    sha256 = "0r0xz8dksacm20516kakqf6xchydhcc1lkvz3m75z1gbl6sa581g";
   };
 
-  patches = [ ./name_to_handle_at.patch ./reexec.patch ];
+  patches = [ ./reexec.patch ];
 
   buildInputs =
     [ pkgconfig intltool gperf libcap dbus kmod xz pam acl
diff --git a/pkgs/os-specific/linux/systemd/name_to_handle_at.patch b/pkgs/os-specific/linux/systemd/name_to_handle_at.patch
deleted file mode 100644
index 99a7cc95723..00000000000
--- a/pkgs/os-specific/linux/systemd/name_to_handle_at.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/src/shared/missing.h b/src/shared/missing.h
-index c5bb71a..14abe4e 100644
---- a/src/shared/missing.h
-+++ b/src/shared/missing.h
-@@ -209,12 +209,12 @@ static inline pid_t gettid(void) {
- #endif
- 
- #ifdef __x86_64__
--#  ifndef __NR_name_to_handle
--#    define __NR_name_to_handle 303
-+#  ifndef __NR_name_to_handle_at
-+#    define __NR_name_to_handle_at 303
- #  endif
- #else
--#  ifndef __NR_name_to_handle
--#    define __NR_name_to_handle 341
-+#  ifndef __NR_name_to_handle_at
-+#    define __NR_name_to_handle_at 341
- #  endif
- #endif
-