diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-07-17 15:35:27 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-07-17 15:35:57 +0200 |
commit | 97121c2a2189c0880cfb4c9a7eb8efd3b6e1c16e (patch) | |
tree | e7975d90b7e1420bd1b477fd60e44622c72500c0 /gnu/packages/linux.scm | |
parent | 68ac258b5291aee33dd11a6fd0f545f81935b633 (diff) | |
download | guix-97121c2a2189c0880cfb4c9a7eb8efd3b6e1c16e.tar guix-97121c2a2189c0880cfb4c9a7eb8efd3b6e1c16e.tar.gz |
gnu: Add Linux-Libre 4.0.8.
* gnu/packages/linux.scm (linux-libre-4.0): New variable.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1280599490..105056d650 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -313,7 +313,18 @@ It has been modified to remove all non-free binary blobs.") (license gpl2) (home-page "http://www.gnu.org/software/linux-libre/")))) +(define-public linux-libre-4.0 + (package + (inherit linux-libre) + (version "4.0.8") + (source (origin + (method url-fetch) + (uri (linux-libre-urls version)) + (sha256 + (base32 + "1xg5ysbdpna78yaz760c1z08sczagqyy74svr3p2mv8iczqyxdca")))))) + ;;; ;;; Pluggable authentication modules (PAM). ;;; |