nixpkgs/pkgs/development/tools/misc/intltool/default.nix

38 lines
1.4 KiB
Nix
Raw Normal View History

2020-09-02 15:32:22 +00:00
{ stdenv, fetchurl, fetchpatch, gettext, perlPackages, buildPackages }:
2015-05-11 07:11:30 +00:00
stdenv.mkDerivation rec {
pname = "intltool";
2015-05-11 07:11:30 +00:00
version = "0.51.0";
2012-11-25 19:58:04 +00:00
src = fetchurl {
url = "https://launchpad.net/intltool/trunk/${version}/+download/${pname}-${version}.tar.gz";
2015-05-11 07:11:30 +00:00
sha256 = "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7";
2012-11-25 19:58:04 +00:00
};
2013-01-31 16:41:07 +00:00
# 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"
"https://src.fedoraproject.org/rpms/intltool/raw/d8d2ef29fb122a42a6b6678eb1ec97ae56902af2/f/intltool-perl5.26-regex-fixes.patch"
];
sha256 = "12q2140867r5d0dysly72khi7b0mm2gd7nlm1k81iyg7fxgnyz45";
})];
2020-09-02 15:32:22 +00:00
nativeBuildInputs = with perlPackages; [ perl XMLParser ];
propagatedBuildInputs = [ gettext ] ++ (with perlPackages; [ perl XMLParser ]);
2012-11-25 19:58:04 +00:00
2020-09-02 15:32:22 +00:00
postInstall = stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
for f in $out/bin/*; do
substituteInPlace $f --replace "${buildPackages.perl}" "${perlPackages.perl}"
done
'';
2015-05-11 07:11:30 +00:00
meta = with stdenv.lib; {
2012-11-25 19:58:04 +00:00
description = "Translation helper tool";
homepage = "https://launchpad.net/intltool/";
2015-05-11 07:11:30 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ raskin ];
platforms = platforms.unix;
2012-11-25 19:58:04 +00:00
};
}