about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/help2man/help2man-1.36.4.nix
blob: 1b2f715b7dc6784e717e088d1f2b3f488a6d7427 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, perl, gettext, perlLocaleGettext}:

stdenv.mkDerivation {
  name = "help2man-1.36.4";

  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/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;
}