2019-03-25 23:22:55 +00:00
|
|
|
{ stdenv, fetchurl, autoconf, automake, libtool, gettext, pkgconfig, wxGTK30,
|
|
|
|
boost, icu, lucenepp, asciidoc, libxslt, xmlto, gtk2, gtkspell2, pugixml,
|
|
|
|
nlohmann_json, hicolor-icon-theme, wrapGAppsHook }:
|
2013-09-13 19:42:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "poedit";
|
2020-11-19 14:22:47 +00:00
|
|
|
version = "2.4.2";
|
2013-09-13 19:42:39 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-25 23:22:55 +00:00
|
|
|
url = "https://github.com/vslavik/poedit/archive/v${version}-oss.tar.gz";
|
2020-11-19 14:22:47 +00:00
|
|
|
sha256 = "1kry3xphrdccx8znfm9pw5872c5w0ri7cknlad4qcps54b25nnzk";
|
2013-09-13 19:42:39 +01:00
|
|
|
};
|
|
|
|
|
2020-11-18 08:42:33 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake asciidoc wrapGAppsHook
|
2019-03-25 23:22:55 +00:00
|
|
|
libxslt xmlto boost libtool pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ lucenepp nlohmann_json wxGTK30 icu pugixml gtk2 gtkspell2 hicolor-icon-theme ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ gettext ];
|
2020-11-18 08:42:33 +00:00
|
|
|
|
2019-03-25 23:22:55 +00:00
|
|
|
preConfigure = "
|
|
|
|
patchShebangs bootstrap
|
|
|
|
./bootstrap
|
|
|
|
";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--without-cld2"
|
|
|
|
"--without-cpprest"
|
|
|
|
"--with-boost-libdir=${boost.out}/lib"
|
|
|
|
"CPPFLAGS=-I${nlohmann_json}/include/nlohmann/"
|
|
|
|
];
|
2020-11-18 08:42:33 +00:00
|
|
|
|
2019-03-25 23:22:55 +00:00
|
|
|
preFixup = ''
|
|
|
|
gappsWrapperArgs+=(--prefix PATH : "${stdenv.lib.makeBinPath [ gettext ]}")
|
|
|
|
'';
|
2020-11-18 08:42:33 +00:00
|
|
|
|
2019-03-25 23:22:55 +00:00
|
|
|
enableParallelBuilding = true;
|
2013-09-13 19:42:39 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Cross-platform gettext catalogs (.po files) editor";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.poedit.net/";
|
2013-09-13 19:42:39 +01:00
|
|
|
license = licenses.mit;
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.unix;
|
2020-11-17 16:50:53 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2013-09-13 19:42:39 +01:00
|
|
|
};
|
|
|
|
}
|