mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, meson
|
|
, fetchurl
|
|
, python3
|
|
, pkg-config
|
|
, gtk4
|
|
, glib
|
|
, gtksourceview5
|
|
, gsettings-desktop-schemas
|
|
, wrapGAppsHook4
|
|
, ninja
|
|
, gnome
|
|
, enchant
|
|
, icu
|
|
, itstool
|
|
, libadwaita
|
|
, libxml2
|
|
, pcre
|
|
, appstream-glib
|
|
, desktop-file-utils
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-text-editor";
|
|
version = "42.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-text-editor/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-o8hQgDO/tjqLSKBirB5nssMzugFTh5s4xmGWihA60Vw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream-glib
|
|
desktop-file-utils
|
|
itstool
|
|
libxml2 # for xmllint
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
enchant
|
|
icu
|
|
glib
|
|
gsettings-desktop-schemas
|
|
gtk4
|
|
gtksourceview5
|
|
libadwaita
|
|
pcre
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|