15 lines
426 B
Nix
15 lines
426 B
Nix
{ pkgs }:
|
|
let
|
|
version = "6.13.7";
|
|
hash = "sha256-Ojm2IDi3rC9D0mofhLQoPhl4BOHoF61jfpo9h0xHgB0=";
|
|
in
|
|
(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;
|
|
}
|