mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
add xvidcap to the channel for linux
This commit is contained in:
parent
f7f9580545
commit
771e2d8d09
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk
|
{ stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk
|
||||||
, scrollkeeper, libglade, libXmu, libX11, libXext, gettext, lame, libXfixes, libXdamage}:
|
, scrollkeeper, libglade, libXmu, libX11, libXext, gettext
|
||||||
|
, lame, libXfixes, libXdamage }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "xvidcap-1.1.7";
|
name = "xvidcap-1.1.7";
|
||||||
@ -10,14 +11,18 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./xlib.patch ];
|
patches = [ ./xlib.patch ];
|
||||||
buildInputs = [perl perlXMLParser pkgconfig gtk scrollkeeper libglade libXmu gettext lame libXdamage libXfixes libXext libX11];
|
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 = "-lXext -lX11 -lz -lgcc_s";
|
NIX_LDFLAGS = "-lXext -lX11 -lz -lgcc_s";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "screencast video catpuring tool";
|
description = "screencast video catpuring tool";
|
||||||
homepage = http://xvidcap.sourceforge.net/;
|
homepage = http://xvidcap.sourceforge.net/;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user