* Xvidcap for making screen recordings.
svn path=/nixpkgs/trunk/; revision=7186
This commit is contained in:
parent
157b6cd18d
commit
26b32785d2
16
pkgs/applications/video/xvidcap/default.nix
Normal file
16
pkgs/applications/video/xvidcap/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk
|
||||
, scrollkeeper, libglade, libXmu, libXext}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "xvidcap-1.1.4p1";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://belnet.dl.sourceforge.net/sourceforge/xvidcap/xvidcap-1.1.4p1.tar.gz;
|
||||
md5 = "35a038dba807f6e09f1d9dd2bc0c5719";
|
||||
};
|
||||
|
||||
buildInputs = [perl perlXMLParser pkgconfig gtk scrollkeeper libglade libXmu];
|
||||
|
||||
# !!! don't know why this is necessary
|
||||
NIX_LDFLAGS = "-rpath ${libXext}/lib";
|
||||
}
|
@ -1252,7 +1252,7 @@ rec {
|
||||
glibc = useFromStdenv (stdenv ? glibc) stdenv.glibc
|
||||
(import ../development/libraries/glibc {
|
||||
inherit fetchurl stdenv kernelHeaders;
|
||||
installLocales = true;
|
||||
#installLocales = false;
|
||||
});
|
||||
|
||||
glibmm = import ../development/libraries/gtk-libs-2.6/glibmm {
|
||||
@ -2725,6 +2725,13 @@ rec {
|
||||
inherit (xlibs) libXaw xproto libXt libX11 libSM libICE;
|
||||
};
|
||||
|
||||
xvidcap = import ../applications/video/xvidcap {
|
||||
inherit fetchurl stdenv perl perlXMLParser pkgconfig;
|
||||
inherit (gtkLibs) gtk;
|
||||
inherit (gnome) scrollkeeper libglade;
|
||||
inherit (xlibs) libXmu libXext;
|
||||
};
|
||||
|
||||
zapping = import ../applications/video/zapping {
|
||||
inherit fetchurl stdenv pkgconfig perl python
|
||||
gettext zvbi libjpeg libpng x11
|
||||
|
Loading…
Reference in New Issue
Block a user