From 4da68d910d4565f0b71553c14242e3e9b7c64a9c Mon Sep 17 00:00:00 2001 From: Chloe Brown Date: Thu, 21 Apr 2022 21:21:40 +0100 Subject: Add a package for latest Linux kernel. --- yellowsquid/packages/linux.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 yellowsquid/packages/linux.scm diff --git a/yellowsquid/packages/linux.scm b/yellowsquid/packages/linux.scm new file mode 100644 index 0000000..84db675 --- /dev/null +++ b/yellowsquid/packages/linux.scm @@ -0,0 +1,16 @@ +(define-module (yellowsquid packages linux) + #:use-module (guix packages) + #:use-module (nongnu packages linux)) + +(define %latest-version "5.17.4") + +(define-public linux-latest + (package + (inherit linux) + (name "linux-latest") + (version %latest-version) + (source ((@@ (gnu packages linux) %upstream-linux-source) + %latest-version + (base32 "1ifkl1j5dimipqxwki26i4v6gav70g24456y7ynbb71sx1pdag3f"))))) + +linux-latest -- cgit v1.2.3