mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
0d3ae9f7d5
https://gitlab.gnome.org/GNOME/gtranslator/-/compare/45.2...45.3 Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com> Changelog-reviewed-by: Jan Tojnar <jtojnar@gmail.com>
69 lines
1.1 KiB
Nix
69 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, itstool
|
|
, gettext
|
|
, wrapGAppsHook4
|
|
, libxml2
|
|
, libadwaita
|
|
, libgda6
|
|
, libsoup_3
|
|
, libspelling
|
|
, json-glib
|
|
, glib
|
|
, gtk4
|
|
, gtksourceview5
|
|
, gnome
|
|
, gsettings-desktop-schemas
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtranslator";
|
|
version = "45.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
sha256 = "MBAgTfXHpa4Cf1owsVRNaXfUF/Dku53il/CtGoAzGHM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
itstool
|
|
gettext
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
libxml2
|
|
glib
|
|
gtk4
|
|
gtksourceview5
|
|
libadwaita
|
|
libgda6
|
|
libsoup_3
|
|
libspelling
|
|
json-glib
|
|
gettext
|
|
gsettings-desktop-schemas
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "GNOME translation making program";
|
|
homepage = "https://wiki.gnome.org/Apps/Gtranslator";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|