nixpkgs/pkgs/development/tools/misc/help2man/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

22 lines
429 B
Nix

{stdenv, fetchurl, perl, gettext, perlLocaleGettext}:
stdenv.mkDerivation {
name = "help2man-1.35.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/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;
}