X-Git-Url: https://git.hcoop.net/jackhill/guix/guix.git/blobdiff_plain/99828fa78896ef2f3ec9228a4093562726ad85c6..0e9bc883b428ca7721d9bbfe7089648c1f221d14:/gnu/packages/linux.scm diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 192221de80..f1c4c7342a 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -12,6 +12,7 @@ ;;; Copyright © 2016 Raymond Nicholson ;;; Copyright © 2016 Mathieu Lirzin ;;; Copyright © 2016 Nicolas Goaziou +;;; Copyright © 2016 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -224,7 +225,7 @@ for SYSTEM and optionally VARIANT, or #f if there is no such configuration." (search-path %load-path file))) (define-public linux-libre - (let* ((version "4.5.4") + (let* ((version "4.6") (build-phase '(lambda* (#:key system inputs #:allow-other-keys #:rest args) ;; Avoid introducing timestamps @@ -302,7 +303,7 @@ for SYSTEM and optionally VARIANT, or #f if there is no such configuration." (uri (linux-libre-urls version)) (sha256 (base32 - "0c587v03kz5whh82apva6gwqvczdi6djy29gk0gfd9dbkb2518b1")))) + "1y1fyrmv34b01a35apkpha5xwvch17fz3kx2g1657x5jhpbnlwn3")))) (build-system gnu-build-system) (supported-systems '("x86_64-linux" "i686-linux")) (native-inputs `(("perl" ,perl) @@ -339,13 +340,13 @@ It has been modified to remove all non-free binary blobs.") (define-public linux-libre-4.4 (package (inherit linux-libre) - (version "4.4.10") + (version "4.4.11") (source (origin (method url-fetch) (uri (linux-libre-urls version)) (sha256 (base32 - "1k7h632vgh3wlz44qqawy238f4mzn19bm9sz9zqq0ql6wwhkjdkj")))) + "17pb9w72vigdrhm8hnkdyw9kwc2l06nabzygpdkwbvf7fg3j03vc")))) (native-inputs (let ((conf (kernel-config (or (%current-target-system) (%current-system)) @@ -356,13 +357,13 @@ It has been modified to remove all non-free binary blobs.") (define-public linux-libre-4.1 (package (inherit linux-libre) - (version "4.1.24") + (version "4.1.25") (source (origin (method url-fetch) (uri (linux-libre-urls version)) (sha256 (base32 - "14jlnq0k86bl4wj8shmvgf34w90bbm9in44j1pdjwwvn169zh9ra")))) + "1vpgcnmfnn005rcd60wyyg0f84fgapdmz2dpcy77p2l66mw4pakf")))) (native-inputs (let ((conf (kernel-config (or (%current-target-system) (%current-system)) @@ -1168,15 +1169,15 @@ configuration and monitoring interfaces.") (define-public iw (package (name "iw") - (version "3.17") + (version "4.3") (source (origin (method url-fetch) (uri (string-append - "https://www.kernel.org/pub/software/network/iw/iw-" + "mirror://kernel.org/software/network/iw/iw-" version ".tar.xz")) (sha256 (base32 - "14zsapqhivk0ws5z21y1ys2c2czi05mzk7bl2yb7qxcfrnsjx9j8")))) + "085jyvrxzarvn5jl0fk618jjxy50nqx7ifngszc4jxk6a4ddibd6")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("libnl" ,libnl))) @@ -1184,11 +1185,11 @@ configuration and monitoring interfaces.") `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")) "CC=gcc") #:phases (alist-delete 'configure %standard-phases))) - (home-page "http://wireless.kernel.org/en/users/Documentation/iw") + (home-page "https://wireless.wiki.kernel.org/") (synopsis "Tool for configuring wireless devices") (description "iw is a new nl80211 based CLI configuration utility for wireless -devices. It replaces 'iwconfig', which is deprecated.") +devices. It replaces @code{iwconfig}, which is deprecated.") (license license:isc))) (define-public powertop @@ -1292,18 +1293,15 @@ processes currently causing I/O.") (define-public fuse (package (name "fuse") - (version "2.9.5") + (version "2.9.6") (source (origin (method url-fetch) - (uri (let ((version-with-underscores - (string-join (string-split version #\.) "_"))) - (string-append - "https://github.com/libfuse/libfuse/" - "releases/download/fuse_" version-with-underscores - "/fuse-" version ".tar.gz"))) + (uri (string-append "https://github.com/libfuse/libfuse/releases/" + "download/fuse-" version + "/fuse-" version ".tar.gz")) (sha256 (base32 - "1dfvbi1p57svbv2sfnbqwpnsk219spvjnlapf35azhgzqlf3g7sp")))) + "0szi2vlsjxg03y4ji51jks34p269jqj5ify6l0ajsqq6f6y8pd0c")))) (build-system gnu-build-system) (inputs `(("util-linux" ,util-linux))) (arguments @@ -1339,7 +1337,7 @@ processes currently causing I/O.") (("-DFUSERMOUNT_DIR=[[:graph:]]+") "-DFUSERMOUNT_DIR=\\\"/var/empty\\\""))) %standard-phases))) - (home-page "http://fuse.sourceforge.net/") + (home-page "https://github.com/libfuse/libfuse") (synopsis "Support file systems implemented in user space") (description "As a consequence of its monolithic design, file system code for Linux @@ -1813,7 +1811,7 @@ compliance.") (define-public wireless-regdb (package (name "wireless-regdb") - (version "2015.04.06") + (version "2016.05.02") (source (origin (method url-fetch) (uri (string-append @@ -1821,7 +1819,7 @@ compliance.") "wireless-regdb-" version ".tar.xz")) (sha256 (base32 - "0czi83k311fp27z42hxjm8vi88fsbc23mhavv96lkb4pmari0jjc")) + "07n6gcwfbddz3awbdflv3dhxjszsqq2lrdwih0a0ahcliac4qry9")) ;; We're building 'regulatory.bin' by ourselves. (snippet '(delete-file "regulatory.bin")))) @@ -2318,7 +2316,7 @@ MPEG-2 and audio over Linux IEEE 1394.") (define-public mdadm (package (name "mdadm") - (version "3.3.2") + (version "3.4") (source (origin (method url-fetch) (uri (string-append @@ -2326,8 +2324,7 @@ MPEG-2 and audio over Linux IEEE 1394.") version ".tar.xz")) (sha256 (base32 - "132vdvh3myjgcjn6i9w90ck16ddjxjcszklzkyvr4f5ifqd7wfhg")) - (patches (search-patches "mdadm-gcc-4.9-fix.patch")))) + "0248v9f28mrbwabl94ck22gfim29sqhkf70wrpfi52nk4x3bxl17")))) (build-system gnu-build-system) (inputs `(("udev" ,eudev))) @@ -2387,18 +2384,41 @@ system calls, important for the performance of databases and other advanced applications.") (license license:lgpl2.1+))) +(define-public sbc + (package + (name "sbc") + (version "1.3") + (source (origin + (method url-fetch) + (uri (string-append "https://www.kernel.org/pub/linux/bluetooth/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "02ckd2z51z0h85qgv7x8vv8ybp5czm9if1z78411j53gaz7j4476")))) + (build-system gnu-build-system) + (inputs + `(("libsndfile" ,libsndfile))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://www.kernel.org/pub/linux/bluetooth/") + (synopsis "Bluetooth subband audio codec") + (description + "The SBC is a digital audio encoder and decoder used to transfer data to +Bluetooth audio output devices like headphones or loudspeakers.") + (license license:gpl2+))) + (define-public bluez (package (name "bluez") - (version "5.36") + (version "5.39") (source (origin (method url-fetch) (uri (string-append - "https://www.kernel.org/pub/linux/bluetooth/bluez-" + "mirror://kernel.org/linux/bluetooth/bluez-" version ".tar.xz")) (sha256 (base32 - "1wkqwmi5krr37mxcqqlp5m2xnw7vw70v3ww7j09vvlskxcdflhx3")))) + "0fsrf9rdmrdyx0vmcpfji4imjsvliawyy5sjb6b64myka28vrl91")))) (build-system gnu-build-system) (arguments '(#:configure-flags @@ -2528,7 +2548,7 @@ and copy/paste text in the console and in xterm.") (define-public btrfs-progs (package (name "btrfs-progs") - (version "4.5.1") + (version "4.5.3") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/linux/kernel/" @@ -2536,7 +2556,7 @@ and copy/paste text in the console and in xterm.") "btrfs-progs-v" version ".tar.xz")) (sha256 (base32 - "1znf2zhb56zbmdjk3lq107678xwsqwc5gczspypmc5i31qnppy7f")))) + "1lzbw275xgv69v4z8hmsf3jnip38116hxhkpv0madk8wv049drz6")))) (build-system gnu-build-system) (arguments '(#:test-target "test" @@ -2648,3 +2668,38 @@ pre-configured) fan level. It requires a working @code{thinkpad_acpi} or any other @code{hwmon} driver that enables temperature reading and fan control from userspace.") (license license:gpl3+))) + +(define-public ntfs-3g + (package + (name "ntfs-3g") + (version "2016.2.22") + (source (origin + (method url-fetch) + (uri (string-append "https://tuxera.com/opensource/" + "ntfs-3g_ntfsprogs-" version ".tgz")) + (sha256 + (base32 + "180y5y09h30ryf2vim8j30a2npwz1iv9ly5yjmh3wjdkwh2jrdyp")) + (modules '((guix build utils))) + (snippet + ;; Install under $prefix. + '(substitute* '("src/Makefile.in" "ntfsprogs/Makefile.in") + (("/sbin") + "@sbindir@"))))) + (build-system gnu-build-system) + (inputs `(("util-linux" ,util-linux) + ("fuse" ,fuse))) ;libuuid + (native-inputs `(("pkg-config" ,pkg-config))) + (arguments + '(#:configure-flags (list "--exec-prefix=${prefix}" + "--with-fuse=external" ;use our own FUSE + "--enable-mount-helper" + "--enable-posix-acls" + "--enable-xattr-mappings"))) + (home-page "http://www.tuxera.com/community/open-source-ntfs-3g/") + (synopsis "Read-write access to NTFS file systems") + (description + "NTFS-3G provides read-write access to NTFS file systems, which are +commonly found on Microsoft Windows. It is implemented as a FUSE file system. +The package provides additional NTFS tools.") + (license license:gpl2+)))