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

47 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-10 21:35:07 +00:00
{ lib, stdenv, fetchurl, autoconf, automake, libtool, gettext, pkgconfig, wxGTK30-gtk3,
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";
2020-11-19 14:22:47 +00:00
version = "2.4.2";
2013-09-13 18:42:39 +00: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 18:42:39 +00: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 ];
2021-01-10 21:35:07 +00:00
buildInputs = [ lucenepp nlohmann_json wxGTK30-gtk3 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/"
];
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 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;
maintainers = with maintainers; [ domenkozar ];
2013-09-13 18:42:39 +00:00
};
}