remove old expression

svn path=/nixpkgs/trunk/; revision=19108
This commit is contained in:
Armijn Hemel 2009-12-25 12:50:27 +00:00
parent a53ab8a2e7
commit b68ed67fc5

@ -1,21 +0,0 @@
{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;
}