tepl: 6.4.0 → 6.8.0

https://gitlab.gnome.org/swilmet/tepl/-/compare/6.4.0...6.8.0
This commit is contained in:
Bobby Rong 2023-12-31 10:15:11 +00:00
parent 0e4d873e28
commit f0283e4284
No known key found for this signature in database

View file

@ -1,14 +1,15 @@
{ lib, stdenv
{ stdenv
, lib
, fetchurl
, meson
, mesonEmulatorHook
, ninja
, amtk
, gnome
, gobject-introspection
, gtk3
, gtksourceview4
, icu
, libgedit-amtk
, libgedit-gtksourceview
, pkg-config
, gtk-doc
, docbook-xsl-nons
@ -16,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "tepl";
version = "6.4.0";
version = "6.8.0";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "XlayBmnQzwX6HWS1jIw0LFkVgSLcUYEA0JPVnfm4cyE=";
sha256 = "Rubl8b/bxS5ZVvBq3VdenHaXxnPVPTgD3+do9JC1YPA=";
};
strictDeps = true;
@ -42,9 +43,9 @@ stdenv.mkDerivation rec {
];
propagatedBuildInputs = [
amtk
gtksourceview4
gtk3
libgedit-amtk
libgedit-gtksourceview
];
doCheck = false;
@ -62,7 +63,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://wiki.gnome.org/Projects/Tepl";
description = "Text editor product line";
maintainers = [ maintainers.manveru ];
maintainers = with maintainers; [ manveru bobby285271 ];
license = licenses.lgpl3Plus;
platforms = platforms.linux;
};