2018-09-14 19:58:06 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
|
|
|
, itstool
|
|
|
|
, gettext
|
|
|
|
, python3
|
|
|
|
, wrapGAppsHook
|
|
|
|
, libxml2
|
|
|
|
, libgda
|
2019-10-28 02:23:28 +00:00
|
|
|
, libsoup
|
|
|
|
, json-glib
|
2018-09-14 19:58:06 +01:00
|
|
|
, gspell
|
|
|
|
, glib
|
2020-04-08 16:43:01 +01:00
|
|
|
, libdazzle
|
2018-09-14 19:58:06 +01:00
|
|
|
, gtk3
|
|
|
|
, gtksourceview4
|
|
|
|
, gnome3
|
|
|
|
, gsettings-desktop-schemas
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gtranslator";
|
2020-04-08 16:43:01 +01:00
|
|
|
version = "3.36.0";
|
2018-09-14 19:58:06 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-06-02 21:44:52 +01:00
|
|
|
sha256 = "1lxd2nkji4jk8g2xmyc1a1r3ww710ddk91zh9psmx8xlb4xivaid";
|
2018-09-14 19:58:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
itstool
|
|
|
|
gettext
|
|
|
|
python3
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
|
|
|
glib
|
|
|
|
gtk3
|
2020-04-08 16:43:01 +01:00
|
|
|
libdazzle
|
2018-09-14 19:58:06 +01:00
|
|
|
gtksourceview4
|
|
|
|
libgda
|
2019-10-28 02:23:28 +00:00
|
|
|
libsoup
|
|
|
|
json-glib
|
2018-09-14 19:58:06 +01:00
|
|
|
gettext
|
|
|
|
gspell
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x build-aux/meson/meson_post_install.py
|
|
|
|
patchShebangs build-aux/meson/meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "GNOME translation making program";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Gtranslator";
|
2018-09-14 19:58:06 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|