summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-15 22:44:22 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-04-15 22:44:22 +0300
commit6fac16c6f39645e77c04913e2fe7b50f06ac6e9a (patch)
tree95cf09dfd5cc068e92cde5a736da5ba64b8cc91e /pkgs
parentbe02add2610e975085e2cbc90128972fb9ca2d4c (diff)
downloadnixlib-6fac16c6f39645e77c04913e2fe7b50f06ac6e9a.tar
nixlib-6fac16c6f39645e77c04913e2fe7b50f06ac6e9a.tar.gz
nixlib-6fac16c6f39645e77c04913e2fe7b50f06ac6e9a.tar.bz2
nixlib-6fac16c6f39645e77c04913e2fe7b50f06ac6e9a.tar.lz
nixlib-6fac16c6f39645e77c04913e2fe7b50f06ac6e9a.tar.xz
nixlib-6fac16c6f39645e77c04913e2fe7b50f06ac6e9a.tar.zst
nixlib-6fac16c6f39645e77c04913e2fe7b50f06ac6e9a.zip
socket_wrapper: Remove glibc from build inputs hack
Not needed anymore after #14668
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/socket_wrapper/default.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/development/libraries/socket_wrapper/default.nix b/pkgs/development/libraries/socket_wrapper/default.nix
index bff4f393d1db..0c6f40c8b143 100644
--- a/pkgs/development/libraries/socket_wrapper/default.nix
+++ b/pkgs/development/libraries/socket_wrapper/default.nix
@@ -9,7 +9,6 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ cmake pkgconfig ];
-  buildInputs = [ (stdenv.cc.libc.out or null) ];
 
   meta = with stdenv.lib; {
     description = "a library passing all socket communications through unix sockets";