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