gnu: kodi: Add nfs functionality.

* gnu/packages/kodi.scm (kodi): Add nfs functionality.
[inputs]: Add libnfs.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Michael Rohleder 2020-10-12 18:08:47 +02:00 committed by Ludovic Courtès
parent c5372cd488
commit 1893c80fc1
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -4,6 +4,7 @@
;;; Copyright © 2017 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2017 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018, 2020 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -42,6 +43,7 @@
#:use-module (gnu packages curl) #:use-module (gnu packages curl)
#:use-module (gnu packages databases) #:use-module (gnu packages databases)
#:use-module (gnu packages documentation) #:use-module (gnu packages documentation)
#:use-module (gnu packages file-systems)
#:use-module (gnu packages fontutils) #:use-module (gnu packages fontutils)
#:use-module (gnu packages freedesktop) #:use-module (gnu packages freedesktop)
#:use-module (gnu packages fribidi) #:use-module (gnu packages fribidi)
@ -375,7 +377,6 @@ alternatives. In compilers, this can reduce the cascade of secondary errors.")
(lambda _ (lambda _
(invoke "make" "kodi-test")))))) (invoke "make" "kodi-test"))))))
;; TODO: Add dependencies for: ;; TODO: Add dependencies for:
;; - nfs
;; - cec ;; - cec
;; - plist ;; - plist
;; - shairplay ;; - shairplay
@ -424,6 +425,7 @@ alternatives. In compilers, this can reduce the cascade of secondary errors.")
("libmad" ,libmad) ("libmad" ,libmad)
("libmicrohttpd" ,libmicrohttpd) ("libmicrohttpd" ,libmicrohttpd)
("libmpeg2" ,libmpeg2) ("libmpeg2" ,libmpeg2)
("libnfs" ,libnfs)
("libogg" ,libogg) ("libogg" ,libogg)
("libpng" ,libpng) ("libpng" ,libpng)
("libssh" ,libssh) ("libssh" ,libssh)