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