about summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext/gettext-0.15.nix
blob: 9db6eeba5639481774314d8a9ef6c9551df849e1 (plain) (blame)
1
2
3
4
5
6
7
8
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "gettext-0.15";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/gettext-0.15.tar.gz;
    md5 = "16bc6e4d37ac3d07495f737a2349a22b";
  };
  configureFlags = "--disable-csharp";
}