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