tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
add xvidcap to the channel for linux
Domen Kožar
11 years ago
771e2d8d
f7f95805
+8
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
xvidcap
default.nix
+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}:
0
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];
0
0
0
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;
0
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
}