fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, fetchpatch, gettext, perl, perlXMLParser }:
2
3stdenv.mkDerivation rec {
4 name = "intltool-${version}";
5 version = "0.51.0";
6
7 src = fetchurl {
8 url = "https://launchpad.net/intltool/trunk/${version}/+download/${name}.tar.gz";
9 sha256 = "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
10 };
11
12 # fix "unescaped left brace" errors when using intltool in some cases
13 patches = [(fetchpatch {
14 name = "perl-5.22.patch";
15 url = "https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/intltool"
16 + "/debian/patches/perl5.22-regex-fixes?revision=47258&view=co&pathrev=47258";
17 sha256 = "17clqczb9fky7hp8czxa0fy82b5478irvz4f3fnans3sqxl95hx3";
18 })];
19
20 propagatedBuildInputs = [ gettext perl perlXMLParser ];
21
22 meta = with stdenv.lib; {
23 description = "Translation helper tool";
24 homepage = https://launchpad.net/intltool/;
25 license = licenses.gpl2Plus;
26 maintainers = with maintainers; [ raskin ];
27 platforms = platforms.unix;
28 };
29}