mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 00:24:47 +00:00
![Bobby Rong](/assets/img/avatar_default.png)
https://gitlab.gnome.org/GNOME/gnome-text-editor/-/compare/45.0...45.1 Changelog-reviewed-by: Bobby Rong <rjl931189261@126.com> Changelog-reviewed-by: Jan Tojnar <jtojnar@gmail.com>
72 lines
1.2 KiB
Nix
72 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, meson
|
|
, fetchurl
|
|
, python3
|
|
, pkg-config
|
|
, gtk4
|
|
, glib
|
|
, gtksourceview5
|
|
, gsettings-desktop-schemas
|
|
, wrapGAppsHook4
|
|
, ninja
|
|
, gnome
|
|
, cairo
|
|
, enchant
|
|
, icu
|
|
, itstool
|
|
, libadwaita
|
|
, editorconfig-core-c
|
|
, libxml2
|
|
, appstream-glib
|
|
, desktop-file-utils
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-text-editor";
|
|
version = "45.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-text-editor/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-aobsmSD0ZrbtkmlVJNO1B7HoQnLa+lNB0GoVfehor3E=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream-glib
|
|
desktop-file-utils
|
|
itstool
|
|
libxml2 # for xmllint
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
enchant
|
|
icu
|
|
glib
|
|
gsettings-desktop-schemas
|
|
gtk4
|
|
gtksourceview5
|
|
libadwaita
|
|
editorconfig-core-c
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "gnome-text-editor";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/gnome-text-editor";
|
|
description = "A Text Editor for GNOME";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|