gnome.gedit: 40.1 -> 41.0

This commit is contained in:
R. Ryantm 2022-02-16 08:17:55 +00:00 committed by Jan Tojnar
parent 4aa5df74fc
commit 1f9f068724

View file

@ -1,4 +1,5 @@
{ lib, stdenv { stdenv
, lib
, meson , meson
, fetchurl , fetchurl
, python3 , python3
@ -7,12 +8,12 @@
, glib , glib
, adwaita-icon-theme , adwaita-icon-theme
, libpeas , libpeas
, libxml2
, gtksourceview4 , gtksourceview4
, gsettings-desktop-schemas , gsettings-desktop-schemas
, wrapGAppsHook , wrapGAppsHook
, ninja , ninja
, libsoup , libsoup
, tepl
, gnome , gnome
, gspell , gspell
, perl , perl
@ -23,11 +24,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gedit"; pname = "gedit";
version = "40.1"; version = "41.0";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gedit/${lib.versions.major version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/gedit/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "149ngl9qw6h59546lir1pa7hvw23ppsnqlj9mfqphmmn5jl99qsm"; sha256 = "epsYsViAjRiSmJFl83BsTxooKXkHmrdFinnTwkrU3rU=";
}; };
patches = [ patches = [
@ -39,6 +40,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ nativeBuildInputs = [
desktop-file-utils desktop-file-utils
itstool itstool
libxml2
meson meson
ninja ninja
perl perl
@ -57,7 +59,6 @@ stdenv.mkDerivation rec {
gtksourceview4 gtksourceview4
libpeas libpeas
libsoup libsoup
tepl
]; ];
postPatch = '' postPatch = ''
@ -81,7 +82,7 @@ stdenv.mkDerivation rec {
homepage = "https://wiki.gnome.org/Apps/Gedit"; homepage = "https://wiki.gnome.org/Apps/Gedit";
description = "Official text editor of the GNOME desktop environment"; description = "Official text editor of the GNOME desktop environment";
maintainers = teams.gnome.members; maintainers = teams.gnome.members;
license = licenses.gpl2; license = licenses.gpl2Plus;
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }