nixpkgs/pkgs/applications/video/cc1394/default.nix
Lluís Batlle i Rossell 97abdd38a5 Adding the Allied Technologies libdc1394 variant and the cc1394 viewer.
svn path=/nixpkgs/trunk/; revision=34013
2012-05-08 09:50:58 +00:00

38 lines
933 B
Nix

{ stdenv, fetchurl, libraw1394, libdc1394avt, qt4, SDL }:
stdenv.mkDerivation rec {
name = "cc1394-3.0";
src = fetchurl {
url = http://www.alliedvisiontec.com/fileadmin/content/PDF/Software/AVT_software/zip_files/AVTFire4Linux3v0.src.tar;
sha256 = "13fz3apxcv2rkb34hxd48lbhss6vagp9h96f55148l4mlf5iyyfv";
};
unpackPhase = ''
tar xf $src
BIGTAR=`echo *`
tar xf */cc1394*.tar.gz
rm -R $BIGTAR
cd cc*
'';
NIX_LDFLAGS = "-lX11";
enableParalellBuilding = true;
preConfigure = ''
sed -i -e s,/usr,$out, cc1394.pro
qmake PREFIX=$out
'';
buildInputs = [ libraw1394 libdc1394avt qt4 SDL ];
meta = {
homepage = http://www.alliedvisiontec.com/us/products/software/linux/avt-fire4linux.html;
description = "AVT Viewer application for AVT cameras";
license = "BSD";
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.linux;
};
}