nixpkgs/pkgs/development/tools/misc/help2man/help2man-1.36.4.nix

22 lines
417 B
Nix
Raw Normal View History

{stdenv, fetchurl, perl, gettext, perlLocaleGettext}:
stdenv.mkDerivation {
name = "help2man-1.36.4";
src = fetchurl {
url = mirror://gnu/help2man/help2man-1.36.4.tar.gz;
md5 = "d31a0a38c2ec71faa06723f6b8bd3076";
};
buildInputs = [
perl
gettext
perlLocaleGettext
];
# So that configure can find `preloadable_libintl.so'.
LD_LIBRARY_PATH = gettext + "/lib";
inherit gettext;
}