add xvidcap to the channel for linux

+8 -3
+8 -3
pkgs/applications/video/xvidcap/default.nix
··· 1 { stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk 2 - , scrollkeeper, libglade, libXmu, libX11, libXext, gettext, lame, libXfixes, libXdamage}: 3 4 stdenv.mkDerivation { 5 name = "xvidcap-1.1.7"; ··· 10 }; 11 12 patches = [ ./xlib.patch ]; 13 - buildInputs = [perl perlXMLParser pkgconfig gtk scrollkeeper libglade libXmu gettext lame libXdamage libXfixes libXext libX11]; 14 15 # !!! don't know why this is necessary 16 NIX_LDFLAGS = "-lXext -lX11 -lz -lgcc_s"; 17 18 - meta = { 19 description = "screencast video catpuring tool"; 20 homepage = http://xvidcap.sourceforge.net/; 21 license = stdenv.lib.licenses.gpl2; 22 }; 23 }
··· 1 { stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk 2 + , scrollkeeper, libglade, libXmu, libX11, libXext, gettext 3 + , lame, libXfixes, libXdamage }: 4 5 stdenv.mkDerivation { 6 name = "xvidcap-1.1.7"; ··· 11 }; 12 13 patches = [ ./xlib.patch ]; 14 + buildInputs = [ 15 + perl perlXMLParser pkgconfig gtk scrollkeeper 16 + libglade libXmu gettext lame libXdamage libXfixes libXext libX11 17 + ]; 18 19 # !!! don't know why this is necessary 20 NIX_LDFLAGS = "-lXext -lX11 -lz -lgcc_s"; 21 22 + meta = with stdenv.lib; { 23 description = "screencast video catpuring tool"; 24 homepage = http://xvidcap.sourceforge.net/; 25 license = stdenv.lib.licenses.gpl2; 26 + platforms = platforms.linux; 27 }; 28 }