From ab377d2a3d61815b092eeb2abbb3d35b8e2b3846 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 26 Nov 2013 11:17:39 +0100 Subject: [PATCH] glibc: Don't install sln It's a 835 KiB utility to create symlinks that (AFAIK) is not used anywhere. It also has no use case in NixOS. --- pkgs/development/libraries/glibc/2.18/builder.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/glibc/2.18/builder.sh b/pkgs/development/libraries/glibc/2.18/builder.sh index b01977a33de..3b077cbb3fd 100644 --- a/pkgs/development/libraries/glibc/2.18/builder.sh +++ b/pkgs/development/libraries/glibc/2.18/builder.sh @@ -49,6 +49,9 @@ postInstall() { # This file, that should not remain in the glibc derivation, # may have not been created during the preInstall rm -f $out/lib/libgcc_s.so.1 + + # Get rid of more unnecessary stuff. + rm -rf $out/var $out/sbin/sln } genericBuild