Created
May 17, 2019 13:03
-
-
Save lfam/5ff6cf847fb0b2833f8e3589b5b12647 to your computer and use it in GitHub Desktop.
Guix package for regular mainline stable Linux kernel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-module (my packages linux) | |
#:use-module (guix download) | |
#:use-module (guix packages) | |
#:use-module (gnu packages linux)) | |
(define (linux-url version) | |
"Return a download URL for Linux VERSION." | |
(string-append "https://cdn.kernel.org/pub/linux/kernel/" | |
"v" (string-take version 1) ".x/" | |
"linux-" version ".tar.xz")) | |
(define-public linux | |
(package | |
(inherit linux-libre) | |
(name "linux") | |
(version "5.1.1") | |
(source (origin | |
(method url-fetch) | |
(uri (linux-url version)) | |
(sha256 | |
(base32 | |
"1pcd0npnrjbc01rzmm58gh135w9nm5mf649asqlw50772qa9jkd0")))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment