tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Merge branch 'staging' into gcc-7
Vladimír Čunát
8 years ago
be8062d3
88206200
+2
-8
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
linux
kernel-headers
default.nix
top-level
all-packages.nix
+1
-6
pkgs/os-specific/linux/kernel-headers/default.nix
···
55
};
56
in {
57
58
-
linuxHeaders_4_4 = common {
59
-
version = "4.4.10";
60
-
sha256 = "1kpjvvd9q9wwr3314q5ymvxii4dv2d27295bzly225wlc552xhja";
61
-
};
62
-
63
-
linuxHeaders_4_15 = common {
64
version = "4.15";
65
sha256 = "0sd7l9n9h7vf9c6gd6ciji28hawda60yj0llh17my06m0s4lf9js";
66
};
···
55
};
56
in {
57
58
+
linuxHeaders = common {
0
0
0
0
0
59
version = "4.15";
60
sha256 = "0sd7l9n9h7vf9c6gd6ciji28hawda60yj0llh17my06m0s4lf9js";
61
};
+1
-2
pkgs/top-level/all-packages.nix
···
12957
lkl = callPackage ../applications/virtualization/lkl { };
12958
12959
inherit (callPackages ../os-specific/linux/kernel-headers { })
12960
-
linuxHeaders_4_4 linuxHeaders_4_15;
12961
-
linuxHeaders = if hostPlatform.isMusl || hostPlatform.isRiscV then linuxHeaders_4_15 else linuxHeaders_4_4;
12962
12963
kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { };
12964
···
12957
lkl = callPackage ../applications/virtualization/lkl { };
12958
12959
inherit (callPackages ../os-specific/linux/kernel-headers { })
12960
+
linuxHeaders;
0
12961
12962
kernelPatches = callPackage ../os-specific/linux/kernel/patches.nix { };
12963