dvgrab: 3.5 -> 2016-05-16

This commit is contained in:
Jörg Thalheim 2017-08-29 12:33:49 +01:00
parent 263978219c
commit f9192394ba

View File

@ -1,24 +1,30 @@
{ fetchurl, stdenv, libunwind, libraw1394, libjpeg, libiec61883, libdv { fetchFromGitHub, stdenv, libunwind, libraw1394, libjpeg, libiec61883, libdv
, libavc1394, pkgconfig }: , libavc1394, pkgconfig, autoreconfHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "dvgrab-3.5"; name = "dvgrab-2016-05-16";
src = fetchurl { src = fetchFromGitHub {
url = "mirror://sourceforge/kino/${name}.tar.gz"; # mirror of original project with some build fixes
sha256 = "1y8arv14nc9sf8njfcxf96pb4nyimpsly1fnhcbj406k54s1h42r"; owner = "ddennedy";
repo = "dvgrab";
rev = "e46042e0c7b3523b6854ee547b0534e8310b7460";
sha256 = "17qy76fjpzrbxm4pj0ljx5lbimxryv24fvr13jwkh24j85dxailn";
}; };
buildInputs = buildInputs = [
[ libunwind libraw1394 libjpeg libiec61883 libdv libavc1394 libunwind libraw1394 libjpeg libiec61883 libdv libavc1394
pkgconfig
]; ];
meta = { nativeBuildInputs = [
autoreconfHook pkgconfig
];
meta = with stdenv.lib; {
description = "Receive and store audio & video over IEEE1394"; description = "Receive and store audio & video over IEEE1394";
longDescription = longDescription = ''
'' dvgrab receives audio and video data from a digital camcorder via an dvgrab receives audio and video data from a digital camcorder via an
IEEE1394 (widely known as FireWire) or USB link and stores them into IEEE1394 (widely known as FireWire) or USB link and stores them into
one of several file formats. It features autosplit of long video one of several file formats. It features autosplit of long video
sequences, and supports saving the data as raw frames, AVI type 1, sequences, and supports saving the data as raw frames, AVI type 1,
@ -27,8 +33,7 @@ stdenv.mkDerivation rec {
homepage = http://kinodv.org/; homepage = http://kinodv.org/;
license = stdenv.lib.licenses.gpl2Plus; license = licenses.gpl2Plus;
platforms = stdenv.lib.platforms.gnu; platforms = platforms.gnu;
maintainers = [ ];
}; };
} }