cc1394: remove dead package

Not updated since 2012. Broken since 2013. Sources long gone.

cc @viric
This commit is contained in:
Tobias Geerinckx-Rice 2016-01-05 02:08:54 +01:00
parent 5989c97665
commit 432c0bd003
2 changed files with 0 additions and 40 deletions

View file

@ -1,38 +0,0 @@
{ 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 = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.viric ];
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = []; # because libdc1394avt is broken
};
}

View file

@ -11229,8 +11229,6 @@ let
cbc = callPackage ../applications/science/math/cbc { };
cc1394 = callPackage ../applications/video/cc1394 { };
cddiscid = callPackage ../applications/audio/cd-discid { };
cdparanoia = cdparanoiaIII;