mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
Updating xvidcap.
svn path=/nixpkgs/trunk/; revision=15432
This commit is contained in:
parent
76863c4bf7
commit
a5ebd913f3
@ -1,18 +1,19 @@
|
|||||||
{ stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk
|
{ stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk
|
||||||
, scrollkeeper, libglade, libXmu, libXext}:
|
, scrollkeeper, libglade, libXmu, libX11, libXext, gettext, lame, libXfixes, libXdamage}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "xvidcap-1.1.4p1";
|
name = "xvidcap-1.1.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/xvidcap/xvidcap-1.1.4p1.tar.gz;
|
url = mirror://sourceforge/xvidcap/xvidcap-1.1.7.tar.gz;
|
||||||
md5 = "35a038dba807f6e09f1d9dd2bc0c5719";
|
sha256 = "0p8rhpyhxgy37crf1xk1046z4p663jg7ww776jw92pld3s024ihm";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [perl perlXMLParser pkgconfig gtk scrollkeeper libglade libXmu];
|
patches = [ ./xlib.patch ];
|
||||||
|
buildInputs = [perl perlXMLParser pkgconfig gtk scrollkeeper libglade libXmu gettext lame libXdamage libXfixes libXext libX11];
|
||||||
|
|
||||||
# !!! don't know why this is necessary
|
# !!! don't know why this is necessary
|
||||||
NIX_LDFLAGS = "-rpath ${libXext}/lib";
|
NIX_LDFLAGS = "-lXext -lX11 -lz -lgcc_s";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "screencast video catpuring tool";
|
description = "screencast video catpuring tool";
|
||||||
|
@ -7048,10 +7048,10 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
xvidcap = import ../applications/video/xvidcap {
|
xvidcap = import ../applications/video/xvidcap {
|
||||||
inherit fetchurl stdenv perl perlXMLParser pkgconfig;
|
inherit fetchurl stdenv perl perlXMLParser pkgconfig gettext lame;
|
||||||
inherit (gtkLibs) gtk;
|
inherit (gtkLibs) gtk;
|
||||||
inherit (gnome) scrollkeeper libglade;
|
inherit (gnome) scrollkeeper libglade;
|
||||||
inherit (xlibs) libXmu libXext;
|
inherit (xlibs) libXmu libXext libXfixes libXdamage libX11;
|
||||||
};
|
};
|
||||||
|
|
||||||
# doesn't compile yet - in case someone else want's to continue ..
|
# doesn't compile yet - in case someone else want's to continue ..
|
||||||
|
Loading…
Reference in New Issue
Block a user