mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: tvtime: Fix build.
* gnu/packages/tv.scm (tvtime)[native-inputs]: Add 'pkg-config' to avoid compilation errors.
This commit is contained in:
parent
1f849cba9f
commit
d591989b42
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2015, 2016, 2017 Alex Kost <alezost@gmail.com>
|
||||
;;; Copyright © 2015, 2016, 2017, 2018 Alex Kost <alezost@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -26,6 +26,7 @@ (define-module (gnu packages tv)
|
|||
#:use-module (gnu packages fontutils)
|
||||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
|
@ -55,6 +56,8 @@ (define-public tvtime
|
|||
("libxml2" ,libxml2)
|
||||
("freetype" ,freetype)
|
||||
("zlib" ,zlib)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "http://tvtime.sourceforge.net")
|
||||
(synopsis "Television viewer")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue