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:
parent
b99065a3d9
commit
2176134a07
21
pkgs/development/tools/misc/help2man/default.nix
Normal file
21
pkgs/development/tools/misc/help2man/default.nix
Normal 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;
|
||||||
|
}
|
|
@ -276,6 +276,10 @@ rec {
|
||||||
inherit fetchurl stdenv perl;
|
inherit fetchurl stdenv perl;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
help2man = (import ../development/tools/misc/help2man) {
|
||||||
|
inherit fetchurl stdenv perl gettext perlLocaleGettext;
|
||||||
|
};
|
||||||
|
|
||||||
octave = (import ../development/interpreters/octave) {
|
octave = (import ../development/interpreters/octave) {
|
||||||
inherit fetchurl stdenv readline ncurses g77 perl flex;
|
inherit fetchurl stdenv readline ncurses g77 perl flex;
|
||||||
};
|
};
|
||||||
|
@ -903,6 +907,14 @@ rec {
|
||||||
propagatedBuildInputs = [perlURI perlHTMLParser];
|
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) {
|
wxPython = (import ../development/python-modules/wxPython-2.5) {
|
||||||
inherit fetchurl stdenv pkgconfig wxGTK python;
|
inherit fetchurl stdenv pkgconfig wxGTK python;
|
||||||
};
|
};
|
||||||
|
@ -1139,6 +1151,7 @@ rec {
|
||||||
MPlayerPlugin = (import ../applications/networking/browsers/mozilla-plugins/mplayerplug-in) {
|
MPlayerPlugin = (import ../applications/networking/browsers/mozilla-plugins/mplayerplug-in) {
|
||||||
inherit fetchurl stdenv pkgconfig firefox;
|
inherit fetchurl stdenv pkgconfig firefox;
|
||||||
inherit (xlibs) libXpm;
|
inherit (xlibs) libXpm;
|
||||||
|
# !!! should depend on MPlayer
|
||||||
};
|
};
|
||||||
|
|
||||||
vlc = (import ../applications/video/vlc) {
|
vlc = (import ../applications/video/vlc) {
|
||||||
|
|
Loading…
Reference in a new issue