nixpkgs/pkgs/development/tools/misc/help2man/default.nix
Eelco Dolstra bf1e734f85 * Don't use the subpath operator (~) anymore, it's subsumed by normal
concatenation (+).

svn path=/nixpkgs/trunk/; revision=6080
2006-08-09 15:05:30 +00:00

22 lines
427 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;
}