Merge pull request #311029 from LudovicoPiero/mako-bump

mako: 1.8.0 -> 1.9.0, and other cleanup

authored by Vlad M and committed by GitHub b521caa0 56c7ebdc

+10 -13
+10 -11
pkgs/applications/misc/mako/default.nix pkgs/by-name/ma/mako/package.nix
··· 3 3 , wayland, wayland-protocols 4 4 , wrapGAppsHook3 }: 5 5 6 - stdenv.mkDerivation rec { 6 + stdenv.mkDerivation (finalAttrs: { 7 7 pname = "mako"; 8 - version = "1.8.0"; 8 + version = "1.9.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "emersion"; 12 - repo = pname; 13 - rev = "v${version}"; 14 - sha256 = "sha256-sUFMcCrc5iNPeAmRbqDaT/n8OIlFJEwJTzY1HMx94RU="; 12 + repo = "mako"; 13 + rev = "refs/tags/v${finalAttrs.version}"; 14 + sha256 = "sha256-QtYtondP7E5QXLRnmcaOQlAm9fKXctfjxeUFqK6FnnE="; 15 15 }; 16 16 17 - depsBuildBuild = [ pkg-config ]; 18 17 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-protocols wrapGAppsHook3 ]; 19 18 buildInputs = [ systemd pango cairo gdk-pixbuf wayland ]; 20 19 ··· 29 28 ) 30 29 ''; 31 30 32 - meta = with lib; { 31 + meta = { 33 32 description = "A lightweight Wayland notification daemon"; 34 33 homepage = "https://wayland.emersion.fr/mako/"; 35 - license = licenses.mit; 36 - maintainers = with maintainers; [ dywedir synthetica ]; 37 - platforms = platforms.linux; 34 + license = lib.licenses.mit; 35 + maintainers = with lib.maintainers; [ dywedir synthetica ]; 36 + platforms = lib.platforms.linux; 38 37 mainProgram = "mako"; 39 38 }; 40 - } 39 + })
-2
pkgs/top-level/all-packages.nix
··· 32647 32647 32648 32648 makeself = callPackage ../applications/misc/makeself { }; 32649 32649 32650 - mako = callPackage ../applications/misc/mako { }; 32651 - 32652 32650 mandelbulber = libsForQt5.callPackage ../applications/graphics/mandelbulber { }; 32653 32651 32654 32652 mapmap = libsForQt5.callPackage ../applications/video/mapmap { };