nixpkgs-suyu/pkgs/tools/text/gtranslator/default.nix

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

88 lines
1.6 KiB
Nix
Raw Normal View History

2022-03-24 08:08:22 +01:00
{ stdenv
, lib
2018-09-14 20:58:06 +02:00
, fetchurl
2022-03-24 08:08:22 +01:00
, fetchpatch
2018-09-14 20:58:06 +02:00
, meson
, ninja
, pkg-config
2018-09-14 20:58:06 +02:00
, itstool
, gettext
, python3
, wrapGAppsHook
, libxml2
, libgda6
2021-04-13 20:58:16 +02:00
, libhandy
2019-10-28 03:23:28 +01:00
, libsoup
, json-glib
2018-09-14 20:58:06 +02:00
, gspell
, glib
, libdazzle
2018-09-14 20:58:06 +02:00
, gtk3
, gtksourceview4
, gnome
2018-09-14 20:58:06 +02:00
, gsettings-desktop-schemas
}:
stdenv.mkDerivation rec {
pname = "gtranslator";
version = "41.0";
2018-09-14 20:58:06 +02:00
src = fetchurl {
2021-04-13 20:58:16 +02:00
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "E28R/gOhlJkMQ6/jOL0eoK0U5+H26Gjlv3xbUsTF5eE=";
2018-09-14 20:58:06 +02:00
};
2022-03-24 08:08:22 +01:00
patches = [
# Fix build with meson 0.61
# data/meson.build:15:5: ERROR: Function does not take positional arguments.
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/gtranslator/-/commit/7ac572cc8c8c37ca3826ecf0d395edd3c38e8e22.patch";
sha256 = "aRg6dYweftV8F7FXykO7m0G+p4SLTFnhTcZx72UCMDE=";
})
];
2018-09-14 20:58:06 +02:00
nativeBuildInputs = [
meson
ninja
pkg-config
2018-09-14 20:58:06 +02:00
itstool
gettext
python3
wrapGAppsHook
];
buildInputs = [
libxml2
glib
gtk3
libdazzle
2018-09-14 20:58:06 +02:00
gtksourceview4
libgda6
2021-04-13 20:58:16 +02:00
libhandy
2019-10-28 03:23:28 +01:00
libsoup
json-glib
2018-09-14 20:58:06 +02: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 = gnome.updateScript {
2018-09-14 20:58:06 +02:00
packageName = pname;
};
};
meta = with lib; {
2018-09-14 20:58:06 +02:00
description = "GNOME translation making program";
homepage = "https://wiki.gnome.org/Apps/Gtranslator";
2018-09-14 20:58:06 +02:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
};
}