Merge pull request #172758 from romildo/upd.mojave-gtk-theme

mojave-gtk-theme: unstable-2021-12-20 -> 2022-05-12
main
Artturi 2 years ago committed by GitHub
commit abc884ab15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      pkgs/data/themes/mojave/default.nix

@ -16,6 +16,7 @@
, opacityVariants ? [] # default to all , opacityVariants ? [] # default to all
, themeVariants ? [] # default to MacOS blue , themeVariants ? [] # default to MacOS blue
, wallpapers ? false , wallpapers ? false
, gitUpdater
}: }:
let let
@ -29,14 +30,14 @@ lib.checkListOfEnum "${pname}: theme variants" [ "default" "blue" "purple" "pink
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
inherit pname; inherit pname;
version = "unstable-2021-12-20"; version = "2022-05-12";
srcs = [ srcs = [
(fetchFromGitHub { (fetchFromGitHub {
owner = "vinceliuice"; owner = "vinceliuice";
repo = pname; repo = pname;
rev = "c148646ccab382f7a2d5fdc421fc32d843cb4172"; rev = version;
sha256 = "sha256-h4MSSh8cu9M81bM+WJSyl1SQ7CVth1DvjIVOUJXqpxs"; sha256 = "sha256-VrrxW16J+S21qBoAeVCWs0Q6bRL1jXAK7MOBpdSMJZY=";
}) })
] ]
++ ++
@ -114,6 +115,8 @@ stdenv.mkDerivation rec {
runHook postInstall runHook postInstall
''; '';
passthru.updateScript = gitUpdater {inherit pname version; };
meta = with lib; { meta = with lib; {
description = "Mac OSX Mojave like theme for GTK based desktop environments"; description = "Mac OSX Mojave like theme for GTK based desktop environments";
homepage = "https://github.com/vinceliuice/Mojave-gtk-theme"; homepage = "https://github.com/vinceliuice/Mojave-gtk-theme";

Loading…
Cancel
Save