summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-06-21 20:41:32 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-06-21 20:41:32 +0000
commitb8f20e51f4a103bec4876eebbdbaa46b38e97004 (patch)
tree668f19a04308059e3609fe49d01a63c08e442829 /pkgs/applications/video
parent59bf3545de4474413e6289ac082240d0d32e9bfb (diff)
downloadnixlib-b8f20e51f4a103bec4876eebbdbaa46b38e97004.tar
nixlib-b8f20e51f4a103bec4876eebbdbaa46b38e97004.tar.gz
nixlib-b8f20e51f4a103bec4876eebbdbaa46b38e97004.tar.bz2
nixlib-b8f20e51f4a103bec4876eebbdbaa46b38e97004.tar.lz
nixlib-b8f20e51f4a103bec4876eebbdbaa46b38e97004.tar.xz
nixlib-b8f20e51f4a103bec4876eebbdbaa46b38e97004.tar.zst
nixlib-b8f20e51f4a103bec4876eebbdbaa46b38e97004.zip
* Added rte (real-time encoder) library.
svn path=/nixpkgs/trunk/; revision=1071
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/zapping/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/video/zapping/default.nix b/pkgs/applications/video/zapping/default.nix
index 1ac1d43bd450..19e98c835762 100644
--- a/pkgs/applications/video/zapping/default.nix
+++ b/pkgs/applications/video/zapping/default.nix
@@ -1,10 +1,11 @@
 { teletextSupport ? true
 , jpegSupport ? true
 , pngSupport ? true
+, recordingSupport ? true
 # !!! libXext shouldn't be necessary (it's in x11); but the builder needs it.
 , stdenv, fetchurl, pkgconfig, perl, python, x11, libXv, libXmu, libXext, libgnomeui
 , libglade, scrollkeeper, esound, gettext, perlXMLParser
-, zvbi ? null, libjpeg ? null, libpng ? null }:
+, zvbi ? null, libjpeg ? null, libpng ? null, rte ? null }:
 
 assert pkgconfig != null && perl != null && python != null
   && x11 != null && libXv != null && libXmu != null && libgnomeui != null && libglade != null
@@ -17,6 +18,8 @@ assert teletextSupport -> zvbi != null && zvbi.pngSupport
 assert jpegSupport -> libjpeg != null;
 assert pngSupport -> libpng != null;
 
+assert recordingSupport -> rte != null;
+
 stdenv.mkDerivation {
   name = "zapping-0.7cvs8";
 
@@ -34,5 +37,6 @@ stdenv.mkDerivation {
     (if teletextSupport then zvbi else null)
     (if jpegSupport then libjpeg else null)
     (if pngSupport then libpng else null)
+    (if recordingSupport then rte else null)
   ];
 }