patos/pkgs/kernel/default.nix

16 lines
407 B
Nix
Raw Permalink Normal View History

2025-03-15 18:49:38 +01:00
{ pkgs }:
let
2025-05-20 21:05:10 +02:00
version = "6.14.7";
hash = "sha256-gRIgK8JtCGlXqU0hCabc1EeMW6GNDwpeHF3+6gH1SXI=";
in
2025-03-17 10:18:30 +01:00
(pkgs.callPackage ./manual-config.nix { }) {
version = "${version}-patos1";
modDirVersion = version;
src = pkgs.fetchurl {
url = "https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-${version}.tar.xz";
hash = hash;
};
configfile = ./generic.config;
allowImportFromDerivation = true;
}