guvcview: 1.7.2 -> 2.0.2

* Download tarball instead of git repo, drop autoreconfHook.
* The application now needs SDL2 instead of SDL.
* The build failed without 'gsl', so add that. (I think ./configure can
  be told to build without it, but it's only 5.7 MiB.)
This commit is contained in:
Bjørn Forsman 2016-01-05 09:44:18 +01:00
parent 550fe7f233
commit e753f795e2

View File

@ -1,21 +1,18 @@
{ stdenv, fetchgit, intltool, autoreconfHook, gettext, pkgconfig { stdenv, fetchurl, intltool, gettext, pkgconfig
, gtk3, portaudio, libpng, SDL, ffmpeg, udev, libusb1, libv4l, alsaLib }: , gtk3, portaudio, libpng, SDL2, ffmpeg, udev, libusb1, libv4l, alsaLib, gsl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.7.2"; version = "2.0.2";
rev = "ab84b0b1ed358f0504e1218a0ef792a02b307af8"; name = "guvcview-${version}";
name = "guvcview-${version}_${rev}";
src = fetchgit { src = fetchurl {
inherit rev; url = "mirror://sourceforge/project/guvcview/source/guvcview-src-${version}.tar.gz";
url = "git://git.code.sf.net/p/guvcview/git-master"; sha256 = "1hnx6h2d3acwpw93ahj54nhizd6qrmylylq6qbjxvilbfprg6y34";
sha256 = "08cpbxq3dh2mlsgzk5dj3vfrgap4q281n9h6xzpbsvyifcj1a9n1";
}; };
buildInputs = buildInputs =
[ SDL [ SDL2
alsaLib alsaLib
autoreconfHook
ffmpeg ffmpeg
gtk3 gtk3
intltool intltool
@ -24,12 +21,9 @@ stdenv.mkDerivation rec {
pkgconfig pkgconfig
portaudio portaudio
udev udev
gsl
]; ];
preConfigure = ''
./bootstrap.sh
'';
meta = { meta = {
description = "A simple interface for devices supported by the linux UVC driver"; description = "A simple interface for devices supported by the linux UVC driver";
homepage = http://guvcview.sourceforge.net; homepage = http://guvcview.sourceforge.net;