about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2016-04-18 23:09:06 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-04-19 14:45:36 +0200
commitfaf63d15249f7eaed676a8fa097c3e734e61249d (patch)
tree312e544b36b4925c0974ac51c73a5032568902a5
parent002f5e24b48d047e67a79470b777bd10fa64a6c7 (diff)
downloadnixlib-faf63d15249f7eaed676a8fa097c3e734e61249d.tar
nixlib-faf63d15249f7eaed676a8fa097c3e734e61249d.tar.gz
nixlib-faf63d15249f7eaed676a8fa097c3e734e61249d.tar.bz2
nixlib-faf63d15249f7eaed676a8fa097c3e734e61249d.tar.lz
nixlib-faf63d15249f7eaed676a8fa097c3e734e61249d.tar.xz
nixlib-faf63d15249f7eaed676a8fa097c3e734e61249d.tar.zst
nixlib-faf63d15249f7eaed676a8fa097c3e734e61249d.zip
linuxPackages: move klibc to top-level
There's no reason for this to be tied to a specific kernel: it is tied
to the API headers, not the kernel sources.
-rw-r--r--pkgs/top-level/all-packages.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 632468903e98..a6ba3e97830c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -10421,6 +10421,10 @@ in
 
   kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { };
 
+  klibc = callPackage ../os-specific/linux/klibc { };
+
+  klibcShrunk = lowPrio (callPackage ../os-specific/linux/klibc/shrunk.nix { });
+
   linux_mptcp = callPackage ../os-specific/linux/kernel/linux-mptcp.nix {
     kernelPatches = [ kernelPatches.bridge_stp_helper ]
       ++ lib.optionals ((platform.kernelArch or null) == "mips")
@@ -10668,10 +10672,6 @@ in
 
     kernelHeaders = callPackage ../os-specific/linux/kernel-headers { };
 
-    klibc = callPackage ../os-specific/linux/klibc { };
-
-    klibcShrunk = lowPrio (callPackage ../os-specific/linux/klibc/shrunk.nix { });
-
     jool = callPackage ../os-specific/linux/jool { };
 
     mba6x_bl = callPackage ../os-specific/linux/mba6x_bl { };