diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-04-17 14:31:39 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-04-17 19:17:10 +0200 |
commit | 4ca077d5729ba172c641fe19a27db8a1977c7be0 (patch) | |
tree | d992fd2b37acd998c4df7881001365683bf5b4f1 | |
parent | b8a3190856ffe2524c2b43eda3500371e221cfa3 (diff) | |
download | patches-4ca077d5729ba172c641fe19a27db8a1977c7be0.tar patches-4ca077d5729ba172c641fe19a27db8a1977c7be0.tar.gz |
gnu: v4l-utils: Update to 1.12.3.
* gnu/packages/video.scm (v4l-utils): Update to 1.12.3.
[native-inputs]: Add perl.
-rw-r--r-- | gnu/packages/video.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 84400f409c..87c9de3e34 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1492,14 +1492,14 @@ tools, XML authoring components, and an extensible plug-in based API.") (define-public v4l-utils (package (name "v4l-utils") - (version "1.10.1") + (version "1.12.3") (source (origin (method url-fetch) (uri (string-append "https://linuxtv.org/downloads/v4l-utils" "/v4l-utils-" version ".tar.bz2")) (sha256 (base32 - "1h1nhg5cmmzlbipak526nk4bm6d0yb217mll75f3rpg7kz1cqiv1")))) + "0vpl3jl0x441y7b5cn7zhdsyi954hp9h2p30jhnr1zkx1rpxsiss")))) (build-system gnu-build-system) (arguments '(#:configure-flags @@ -1508,7 +1508,8 @@ tools, XML authoring components, and an extensible plug-in based API.") "/lib/udev") "CXXFLAGS=-std=gnu++11"))) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("perl" ,perl) + ("pkg-config" ,pkg-config))) (inputs `(("alsa-lib" ,alsa-lib) ("glu" ,glu) |