1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

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