diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2022-04-21 21:21:40 +0100 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2022-04-21 21:21:40 +0100 |
commit | 4da68d910d4565f0b71553c14242e3e9b7c64a9c (patch) | |
tree | f170d62023bc4d3d834bf6f193cbb994a01bcee1 | |
parent | 79480cc1987a70997ba4b00862cb2efeb1946452 (diff) |
Add a package for latest Linux kernel.
-rw-r--r-- | yellowsquid/packages/linux.scm | 16 |
1 files changed, 16 insertions, 0 deletions
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 |