libgedit-amtk: 5.6.1 → 5.8.0, renamed from amtk

See README.md in https://gitlab.gnome.org/Archive/amtk.

+15 -15
+14 -13
pkgs/development/libraries/amtk/default.nix pkgs/by-name/li/libgedit-amtk/package.nix
··· 1 { stdenv 2 , lib 3 - , fetchurl 4 , glib 5 , gtk3 6 , meson ··· 10 , gobject-introspection 11 , gtk-doc 12 , docbook-xsl-nons 13 - , gnome 14 , dbus 15 , xvfb-run 16 }: 17 18 stdenv.mkDerivation rec { 19 - pname = "amtk"; 20 - version = "5.6.1"; 21 22 outputs = [ "out" "dev" "devdoc" ]; 23 24 - src = fetchurl { 25 - url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 26 - sha256 = "1QEVuFyHKqwpaTS17nJqP6FWxvWtltJ+Dt0Kpa0XMig="; 27 }; 28 29 strictDeps = true; ··· 39 ]; 40 41 propagatedBuildInputs = [ 42 - # Required by amtk-5.pc 43 glib 44 gtk3 45 ]; ··· 60 runHook postCheck 61 ''; 62 63 - passthru.updateScript = gnome.updateScript { 64 - packageName = pname; 65 - versionPolicy = "none"; 66 }; 67 68 meta = with lib; { 69 - homepage = "https://wiki.gnome.org/Projects/Amtk"; 70 description = "Actions, Menus and Toolbars Kit for GTK applications"; 71 - maintainers = [ maintainers.manveru ]; 72 license = licenses.lgpl21Plus; 73 platforms = platforms.linux; 74 };
··· 1 { stdenv 2 , lib 3 + , fetchFromGitHub 4 , glib 5 , gtk3 6 , meson ··· 10 , gobject-introspection 11 , gtk-doc 12 , docbook-xsl-nons 13 + , gitUpdater 14 , dbus 15 , xvfb-run 16 }: 17 18 stdenv.mkDerivation rec { 19 + pname = "libgedit-amtk"; 20 + version = "5.8.0"; 21 22 outputs = [ "out" "dev" "devdoc" ]; 23 24 + src = fetchFromGitHub { 25 + owner = "gedit-technology"; 26 + repo = "libgedit-amtk"; 27 + rev = version; 28 + hash = "sha256-U77/KMZw9k9ukebCXVXAsCa4uJaTgw9irfZ/l0303kk="; 29 }; 30 31 strictDeps = true; ··· 41 ]; 42 43 propagatedBuildInputs = [ 44 + # Required by libgedit-amtk-5.pc 45 glib 46 gtk3 47 ]; ··· 62 runHook postCheck 63 ''; 64 65 + passthru.updateScript = gitUpdater { 66 + odd-unstable = true; 67 }; 68 69 meta = with lib; { 70 + homepage = "https://github.com/gedit-technology/libgedit-amtk"; 71 description = "Actions, Menus and Toolbars Kit for GTK applications"; 72 + maintainers = with maintainers; [ manveru bobby285271 ]; 73 license = licenses.lgpl21Plus; 74 platforms = platforms.linux; 75 };
+1
pkgs/top-level/aliases.nix
··· 67 alsaPlugins = alsa-plugins; # Added 2021-06-10 68 alsaTools = alsa-tools; # Added 2021-06-10 69 alsaUtils = alsa-utils; # Added 2021-06-10 70 angelfish = libsForQt5.kdeGear.angelfish; # Added 2021-10-06 71 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 72 apacheAnt_1_9 = throw "Ant 1.9 has been removed since it's not used in nixpkgs anymore"; # Added 2023-11-12
··· 67 alsaPlugins = alsa-plugins; # Added 2021-06-10 68 alsaTools = alsa-tools; # Added 2021-06-10 69 alsaUtils = alsa-utils; # Added 2021-06-10 70 + amtk = throw "amtk has been renamed to libgedit-amtk and is now maintained by Gedit Technology"; # Added 2023-12-31 71 angelfish = libsForQt5.kdeGear.angelfish; # Added 2021-10-06 72 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 73 apacheAnt_1_9 = throw "Ant 1.9 has been removed since it's not used in nixpkgs anymore"; # Added 2023-11-12
-2
pkgs/top-level/all-packages.nix
··· 18153 18154 h3 = h3_3; 18155 18156 - amtk = callPackage ../development/libraries/amtk { }; 18157 - 18158 avrlibc = callPackage ../development/misc/avr/libc { }; 18159 avrlibcCross = callPackage ../development/misc/avr/libc { 18160 stdenv = crossLibcStdenv;
··· 18153 18154 h3 = h3_3; 18155 18156 avrlibc = callPackage ../development/misc/avr/libc { }; 18157 avrlibcCross = callPackage ../development/misc/avr/libc { 18158 stdenv = crossLibcStdenv;