libgedit-amtk: 5.6.1 → 5.8.0, renamed from amtk

See README.md in https://gitlab.gnome.org/Archive/amtk.
This commit is contained in:
Bobby Rong 2023-12-31 18:05:02 +08:00
parent 304caff45e
commit ced24ce9f3
No known key found for this signature in database
3 changed files with 15 additions and 15 deletions

View file

@ -1,6 +1,6 @@
{ stdenv
, lib
, fetchurl
, fetchFromGitHub
, glib
, gtk3
, meson
@ -10,20 +10,22 @@
, gobject-introspection
, gtk-doc
, docbook-xsl-nons
, gnome
, gitUpdater
, dbus
, xvfb-run
}:
stdenv.mkDerivation rec {
pname = "amtk";
version = "5.6.1";
pname = "libgedit-amtk";
version = "5.8.0";
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1QEVuFyHKqwpaTS17nJqP6FWxvWtltJ+Dt0Kpa0XMig=";
src = fetchFromGitHub {
owner = "gedit-technology";
repo = "libgedit-amtk";
rev = version;
hash = "sha256-U77/KMZw9k9ukebCXVXAsCa4uJaTgw9irfZ/l0303kk=";
};
strictDeps = true;
@ -39,7 +41,7 @@ stdenv.mkDerivation rec {
];
propagatedBuildInputs = [
# Required by amtk-5.pc
# Required by libgedit-amtk-5.pc
glib
gtk3
];
@ -60,15 +62,14 @@ stdenv.mkDerivation rec {
runHook postCheck
'';
passthru.updateScript = gnome.updateScript {
packageName = pname;
versionPolicy = "none";
passthru.updateScript = gitUpdater {
odd-unstable = true;
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Projects/Amtk";
homepage = "https://github.com/gedit-technology/libgedit-amtk";
description = "Actions, Menus and Toolbars Kit for GTK applications";
maintainers = [ maintainers.manveru ];
maintainers = with maintainers; [ manveru bobby285271 ];
license = licenses.lgpl21Plus;
platforms = platforms.linux;
};

View file

@ -67,6 +67,7 @@ mapAliases ({
alsaPlugins = alsa-plugins; # Added 2021-06-10
alsaTools = alsa-tools; # Added 2021-06-10
alsaUtils = alsa-utils; # Added 2021-06-10
amtk = throw "amtk has been renamed to libgedit-amtk and is now maintained by Gedit Technology"; # Added 2023-12-31
angelfish = libsForQt5.kdeGear.angelfish; # Added 2021-10-06
ansible_2_12 = throw "Ansible 2.12 goes end of life in 2023/05 and can't be supported throughout the 23.05 release cycle"; # Added 2023-05-16
apacheAnt_1_9 = throw "Ant 1.9 has been removed since it's not used in nixpkgs anymore"; # Added 2023-11-12

View file

@ -18153,8 +18153,6 @@ with pkgs;
h3 = h3_3;
amtk = callPackage ../development/libraries/amtk { };
avrlibc = callPackage ../development/misc/avr/libc { };
avrlibcCross = callPackage ../development/misc/avr/libc {
stdenv = crossLibcStdenv;