2022-12-03 02:28:32 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, gettext, pkg-config, wxGTK30,
|
2021-01-10 21:35:07 +00:00
|
|
|
boost, icu, lucenepp, asciidoc, libxslt, xmlto, gtk3, gtkspell3, pugixml,
|
2019-03-25 23:22:55 +00:00
|
|
|
nlohmann_json, hicolor-icon-theme, wrapGAppsHook }:
|
2013-09-13 18:42:39 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "poedit";
|
2022-08-01 05:52:03 +00:00
|
|
|
version = "3.1.1";
|
2013-09-13 18:42:39 +00:00
|
|
|
|
2021-05-11 20:52:10 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vslavik";
|
|
|
|
repo = "poedit";
|
|
|
|
rev = "v${version}-oss";
|
2022-08-01 05:52:03 +00:00
|
|
|
sha256 = "sha256-kun1x1ql8KLS1+nh5+iItxYZnfvFcrx62cvX4OEczG4=";
|
2013-09-13 18:42:39 +00:00
|
|
|
};
|
|
|
|
|
2020-11-18 08:42:33 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake asciidoc wrapGAppsHook
|
2021-01-17 09:17:16 +00:00
|
|
|
libxslt xmlto boost libtool pkg-config ];
|
2019-03-25 23:22:55 +00:00
|
|
|
|
2022-12-03 02:28:32 +00:00
|
|
|
buildInputs = [ lucenepp nlohmann_json wxGTK30 icu pugixml gtk3 gtkspell3 hicolor-icon-theme ];
|
2019-03-25 23:22:55 +00:00
|
|
|
|
|
|
|
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/"
|
2021-11-12 17:22:05 +00:00
|
|
|
"LDFLAGS=-llucene++"
|
2019-03-25 23:22:55 +00:00
|
|
|
];
|
2020-11-18 08:42:33 +00:00
|
|
|
|
2019-03-25 23:22:55 +00:00
|
|
|
preFixup = ''
|
2021-01-15 09:19:50 +00:00
|
|
|
gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ gettext ]}")
|
2019-03-25 23:22:55 +00:00
|
|
|
'';
|
2020-11-18 08:42:33 +00:00
|
|
|
|
2019-03-25 23:22:55 +00:00
|
|
|
enableParallelBuilding = true;
|
2013-09-13 18:42:39 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-09-13 18:42:39 +00:00
|
|
|
description = "Cross-platform gettext catalogs (.po files) editor";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.poedit.net/";
|
2013-09-13 18:42:39 +00:00
|
|
|
license = licenses.mit;
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.unix;
|
2021-05-11 20:52:10 +00:00
|
|
|
maintainers = with maintainers; [ dasj19 ];
|
2013-09-13 18:42:39 +00:00
|
|
|
};
|
|
|
|
}
|