depot/third_party/nixpkgs/pkgs/tools/video/dvgrab/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

39 lines
1.2 KiB
Nix

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