base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / text / poedit / default.nix
blob101a08422c18c20a92764422da962d23e1897ebe
1 { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, gettext, pkg-config, wxGTK32,
2   boost, icu, lucenepp, asciidoc, libxslt, xmlto, gtk3, gtkspell3, pugixml,
3   nlohmann_json, hicolor-icon-theme, wrapGAppsHook3 }:
5 stdenv.mkDerivation rec {
6   pname = "poedit";
7   version = "3.4.4";
9   src = fetchFromGitHub {
10     owner = "vslavik";
11     repo = "poedit";
12     rev = "v${version}-oss";
13     hash = "sha256-SZjsJQYJCXQendzQ2Tobg+IgkWL6lFX5YnMfruPt7UA=";
14   };
16   nativeBuildInputs = [ autoconf automake asciidoc wrapGAppsHook3
17     libxslt xmlto boost libtool pkg-config ];
19   buildInputs = [ lucenepp nlohmann_json wxGTK32 icu pugixml gtk3 gtkspell3 hicolor-icon-theme ];
21   propagatedBuildInputs = [ gettext ];
23   preConfigure = "
24     patchShebangs bootstrap
25     ./bootstrap
26   ";
28   configureFlags = [
29     "--without-cld2"
30     "--without-cpprest"
31     "--with-boost-libdir=${boost.out}/lib"
32     "CPPFLAGS=-I${nlohmann_json}/include/nlohmann/"
33     "LDFLAGS=-llucene++"
34   ];
36   preFixup = ''
37     gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ gettext ]}")
38   '';
40   enableParallelBuilding = true;
42   meta = with lib; {
43     description = "Cross-platform gettext catalogs (.po files) editor";
44     mainProgram = "poedit";
45     homepage = "https://www.poedit.net/";
46     license = licenses.mit;
47     platforms = platforms.unix;
48     maintainers = with maintainers; [ dasj19 ];
49     # configure: error: GTK+ build of wxWidgets is required
50     broken = stdenv.hostPlatform.isDarwin;
51   };