3
0
Fork 0
forked from mirrors/nixpkgs

* Added help2man and Locale::gettext. Contributed by olivier <bitmap

AT pan.homelinux.com>.

svn path=/nixpkgs/trunk/; revision=3067
This commit is contained in:
Eelco Dolstra 2005-05-18 21:15:29 +00:00
parent b99065a3d9
commit 2176134a07
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{stdenv, fetchurl, perl, gettext, perlLocaleGettext}:
stdenv.mkDerivation {
name = "help2man-1.35.1";
src = fetchurl {
url = http://ftp.gnu.org/gnu/help2man/help2man-1.35.1.tar.gz;
md5 = "e3c9e846dd163eb7f1d1661e2d0baa07";
};
buildInputs = [
perl
gettext
perlLocaleGettext
];
# So that configure can find `preloadable_libintl.so'.
LD_LIBRARY_PATH = gettext ~ "/lib";
inherit gettext;
}

View file

@ -276,6 +276,10 @@ rec {
inherit fetchurl stdenv perl;
};
help2man = (import ../development/tools/misc/help2man) {
inherit fetchurl stdenv perl gettext perlLocaleGettext;
};
octave = (import ../development/interpreters/octave) {
inherit fetchurl stdenv readline ncurses g77 perl flex;
};
@ -903,6 +907,14 @@ rec {
propagatedBuildInputs = [perlURI perlHTMLParser];
};
perlLocaleGettext = import ../development/perl-modules/generic perl {
name = "LocaleGettext-1.04";
src = fetchurl {
url = http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-1.04.tar.gz;
md5 = "578dd0c76f8673943be043435b0fbde4";
};
};
wxPython = (import ../development/python-modules/wxPython-2.5) {
inherit fetchurl stdenv pkgconfig wxGTK python;
};
@ -1139,6 +1151,7 @@ rec {
MPlayerPlugin = (import ../applications/networking/browsers/mozilla-plugins/mplayerplug-in) {
inherit fetchurl stdenv pkgconfig firefox;
inherit (xlibs) libXpm;
# !!! should depend on MPlayer
};
vlc = (import ../applications/video/vlc) {