1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00
nixpkgs/pkgs/development/libraries/gettext/gettext-0.15.nix

9 lines
243 B
Nix
Raw Normal View History

{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";
}