summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorAtemu <atemu.main@gmail.com>2020-07-27 18:31:44 +0200
committerAtemu <atemu.main@gmail.com>2020-07-27 20:10:29 +0200
commit83451174b826146cedbc31d98f16c870a0dd0c45 (patch)
tree603fbf3acdc2a658e36e60da907de80fb158c5fc /pkgs/os-specific/linux
parent28fce082c8ca1a8fb3dfac5c938829e51fb314c8 (diff)
downloadnixpkgs-83451174b826146cedbc31d98f16c870a0dd0c45.tar
nixpkgs-83451174b826146cedbc31d98f16c870a0dd0c45.tar.gz
nixpkgs-83451174b826146cedbc31d98f16c870a0dd0c45.tar.bz2
nixpkgs-83451174b826146cedbc31d98f16c870a0dd0c45.tar.lz
nixpkgs-83451174b826146cedbc31d98f16c870a0dd0c45.tar.xz
nixpkgs-83451174b826146cedbc31d98f16c870a0dd0c45.tar.zst
nixpkgs-83451174b826146cedbc31d98f16c870a0dd0c45.zip
linux_zen: init at 5.7.10
Fixes #74834
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/kernel/linux-zen.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel/linux-zen.nix b/pkgs/os-specific/linux/kernel/linux-zen.nix
new file mode 100644
index 00000000000..fcc74ecad2a
--- /dev/null
+++ b/pkgs/os-specific/linux/kernel/linux-zen.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, buildLinux, ... } @ args:
+
+let
+  version = "5.7.10";
+in
+
+buildLinux (args // {
+  modDirVersion = "${version}-zen1";
+  inherit version;
+
+  src = fetchFromGitHub {
+    owner = "zen-kernel";
+    repo = "zen-kernel";
+    rev = "v${version}-zen1";
+    sha256 = "0m9abjs7xv80zgk5qx7iimxaycif8dlr0g0kzkjyaw9mxji6gp37";
+  };
+
+  extraMeta = {
+    branch = "5.7/master";
+    maintainers = with stdenv.lib.maintainers; [ atemu ];
+  };
+
+} // (args.argsOverride or {}))