nixpkgs/pkgs/tools/text/poedit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.3 KiB
Nix
Raw Normal View History

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 {
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
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/"
"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
meta = with lib; {
2013-09-13 18:42:39 +00:00
description = "Cross-platform gettext catalogs (.po files) editor";
homepage = "https://www.poedit.net/";
2013-09-13 18:42:39 +00:00
license = licenses.mit;
platforms = platforms.unix;
2021-05-11 20:52:10 +00:00
maintainers = with maintainers; [ dasj19 ];
2013-09-13 18:42:39 +00:00
};
}