about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/intltool/default.nix
blob: 3e48192d00e416999cb73d52acfe25fe3236e2ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, fetchpatch, gettext, perl, perlXMLParser }:

stdenv.mkDerivation rec {
  name = "intltool-${version}";
  version = "0.51.0";

  src = fetchurl {
    url = "https://launchpad.net/intltool/trunk/${version}/+download/${name}.tar.gz";
    sha256 = "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
  };

  # fix "unescaped left brace" errors when using intltool in some cases
  patches = [(fetchpatch {
    name = "perl-5.22.patch";
    url = "https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/intltool"
      + "/debian/patches/perl5.22-regex-fixes.patch?revision=47258&view=co";
    sha256 = "17clqczb9fky7hp8czxa0fy82b5478irvz4f3fnans3sqxl95hx3";
  })];

  propagatedBuildInputs = [ gettext perl perlXMLParser ];

  meta = with stdenv.lib; {
    description = "Translation helper tool";
    homepage = https://launchpad.net/intltool/;
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.unix;
  };
}