blob: 111b08d4111f34ea651d19fb7584a43c65bc7d85 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
lib,
stdenv,
fetchurl,
fetchpatch,
gettext,
perlPackages,
buildPackages,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "intltool";
version = "0.51.0";
src = fetchurl {
url = "https://launchpad.net/intltool/trunk/${finalAttrs.version}/+download/intltool-${finalAttrs.version}.tar.gz";
sha256 = "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
};
# fix "unescaped left brace" errors when using intltool in some cases
patches = [
(fetchpatch {
name = "perl5.26-regex-fixes.patch";
urls = [
"https://sources.debian.org/data/main/i/intltool/0.51.0-5/debian/patches/perl5.26-regex-fixes.patch"
"https://src.fedoraproject.org/rpms/intltool/raw/d8d2ef29fb122a42a6b6678eb1ec97ae56902af2/f/intltool-perl5.26-regex-fixes.patch"
];
sha256 = "12q2140867r5d0dysly72khi7b0mm2gd7nlm1k81iyg7fxgnyz45";
})
];
nativeBuildInputs = with perlPackages; [
perl
XMLParser
];
propagatedBuildInputs = [
gettext
]
++ (with perlPackages; [
perl
XMLParser
]);
postInstall = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
for f in $out/bin/*; do
substituteInPlace $f --replace "${buildPackages.perl}" "${perlPackages.perl}"
done
'';
meta = {
description = "Translation helper tool";
homepage = "https://launchpad.net/intltool/";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ raskin ];
platforms = lib.platforms.unix;
};
})
|