summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext/default.fix
blob: d20c6f4763e8dc860636d6422aae3202baf4c02e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "gettext-0.12.1";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/gettext/gettext-0.12.1.tar.gz;
    md5 = "5d4bddd300072315e668247e5b7d5bdb";
  };
  stdenv = stdenv;
}