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

77 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2018-09-14 18:58:06 +00:00
, fetchurl
, meson
, ninja
, pkg-config
2018-09-14 18:58:06 +00:00
, itstool
, gettext
, python3
, wrapGAppsHook
, libxml2
, libgda
2021-04-13 18:58:16 +00:00
, libhandy
2019-10-28 02:23:28 +00:00
, libsoup
, json-glib
2018-09-14 18:58:06 +00:00
, gspell
, glib
, libdazzle
2018-09-14 18:58:06 +00:00
, gtk3
, gtksourceview4
, gnome
2018-09-14 18:58:06 +00:00
, gsettings-desktop-schemas
}:
stdenv.mkDerivation rec {
pname = "gtranslator";
2021-04-13 18:58:16 +00:00
version = "40.0";
2018-09-14 18:58:06 +00:00
src = fetchurl {
2021-04-13 18:58:16 +00:00
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "0d48nc11z0m91scy21ah56ysxns82zvswx8lglvlkig1vqvblgpc";
2018-09-14 18:58:06 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
2018-09-14 18:58:06 +00:00
itstool
gettext
python3
wrapGAppsHook
];
buildInputs = [
libxml2
glib
gtk3
libdazzle
2018-09-14 18:58:06 +00:00
gtksourceview4
libgda
2021-04-13 18:58:16 +00:00
libhandy
2019-10-28 02:23:28 +00:00
libsoup
json-glib
2018-09-14 18:58:06 +00: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 18:58:06 +00:00
packageName = pname;
};
};
meta = with lib; {
2018-09-14 18:58:06 +00:00
description = "GNOME translation making program";
homepage = "https://wiki.gnome.org/Apps/Gtranslator";
2018-09-14 18:58:06 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
};
}