about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/intltool/default.nix
blob: c837728f72ddddc78c50c48846e4283203fe129f (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, perlPackages }:

stdenv.mkDerivation rec {
  pname = "intltool";
  version = "0.51.0";

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

  # fix "unescaped left brace" errors when using intltool in some cases
  patches = [(fetchpatch {
    name = "perl5.26-regex-fixes.patch";
    url = "https://sources.debian.org/data/main/i/intltool/0.51.0-5"
      + "/debian/patches/perl5.26-regex-fixes.patch";
    sha256 = "12q2140867r5d0dysly72khi7b0mm2gd7nlm1k81iyg7fxgnyz45";
  })];

  propagatedBuildInputs = [ gettext ] ++ (with perlPackages; [ perl XMLParser ]);

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