summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext/gettext-0.14.6.nix
blob: 21961673aaa2f49e5e6e4f879351cbae1e1b1e68 (plain) (blame)
1
2
3
4
5
6
7
8
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "gettext-0.14.6";
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/gettext/gettext-0.14.6.tar.gz;
    md5 = "c26fc7f0a493c5c7c39bbc4e7ed42790";
  };
  configureFlags = "--disable-csharp";
}