diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-08-04 08:02:44 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-08-04 08:02:44 +0300 |
| commit | 40f6b888eaef42919d0f3296ad7c53fc8ce869f1 (patch) | |
| tree | c1d4bba91f3e096d982ddcd7303598eca04e7954 | |
| parent | Remove odd recipes. (diff) | |
| download | guix-nonfree-40f6b888eaef42919d0f3296ad7c53fc8ce869f1.tar.gz | |
linux-nonfree: Stick to 4.10.10 version.
* linux-nonfree.scm (linux-nonfree): Stick to 4.10.10 version.
| -rw-r--r-- | linux-nonfree.scm | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/linux-nonfree.scm b/linux-nonfree.scm index 363eb16..a8ac3e9 100644 --- a/linux-nonfree.scm +++ b/linux-nonfree.scm @@ -91,20 +91,21 @@ "linux-" version ".tar.xz"))) (define-public linux-nonfree - (package - (inherit linux-libre) - (name "linux-nonfree") - (version (package-version linux-libre)) - (source (origin - (method url-fetch) - (uri (linux-nonfree-urls version)) - (sha256 - (base32 - "1kp1lsf4314af7crpqkd2x1zx407a97r7rz3zhhskbilvsifgkny")))) - (synopsis "Mainline Linux kernel, nonfree binary blobs included.") - (description "Linux is a kernel.") - (license gpl2) - (home-page "http://kernel.org/"))) + (let ((version "4.10.10")) + (package + (inherit linux-libre) + (name "linux-nonfree") + (version version) + (source (origin + (method url-fetch) + (uri (linux-nonfree-urls version)) + (sha256 + (base32 + "0hbzbzykay1yyrqz06lx9rwhf1xzzjs21i561gi4fjkm1bazv8l4")))) + (synopsis "Mainline Linux kernel, nonfree binary blobs included.") + (description "Linux is a kernel.") + (license gpl2) + (home-page "http://kernel.org/")))) (define-public perf-nonfree (package |
