about summary refs log tree commit diff
path: root/pkgs/by-name/ca
diff options
context:
space:
mode:
authorJohn Titor <50095635+JohnRTitor@users.noreply.github.com>2024-05-30 13:07:49 +0530
committerJohn Titor <50095635+JohnRTitor@users.noreply.github.com>2024-05-30 13:10:04 +0530
commit5114e98b1f82ee557c7212db7e02828c008866cc (patch)
treeb60bcbf0e91bb2bd0a568dbd14566ace364c1ce1 /pkgs/by-name/ca
parentf09d076c3a26cb99aa1b6f4356e3cb8d866f0252 (diff)
catppuccin-plymouth: unstable-2022-12-10 -> 0-unstable-2024-05-28
add update-script
add johnrtitor as maintainer
Diffstat (limited to 'pkgs/by-name/ca')
-rw-r--r--pkgs/by-name/ca/catppuccin-plymouth/package.nix16
1 files changed, 12 insertions, 4 deletions
diff --git a/pkgs/by-name/ca/catppuccin-plymouth/package.nix b/pkgs/by-name/ca/catppuccin-plymouth/package.nix
index 994c5ed0df2ca..06281a47001dc 100644
--- a/pkgs/by-name/ca/catppuccin-plymouth/package.nix
+++ b/pkgs/by-name/ca/catppuccin-plymouth/package.nix
@@ -1,6 +1,7 @@
 { stdenvNoCC
 , lib
 , fetchFromGitHub
+, unstableGitUpdater
 , variant ? "macchiato"
 }:
 
@@ -12,13 +13,13 @@ lib.checkListOfEnum "${pname}: color variant" validVariants [ variant ]
 
 stdenvNoCC.mkDerivation rec {
   inherit pname;
-  version = "unstable-2022-12-10";
+  version = "0-unstable-2024-05-28";
 
   src = fetchFromGitHub {
     owner = "catppuccin";
     repo = "plymouth";
-    rev = "d4105cf336599653783c34c4a2d6ca8c93f9281c";
-    hash = "sha256-quBSH8hx3gD7y1JNWAKQdTk3CmO4t1kVo4cOGbeWlNE=";
+    rev = "e13c348a0f47772303b2da1e9396027d8cda160d";
+    hash = "sha256-6DliqhRncvdPuKzL9LJec3PJWmK/jo9BrrML7g6YcH0=";
   };
 
   sourceRoot = "${src.name}/themes/catppuccin-${variant}";
@@ -33,11 +34,18 @@ stdenvNoCC.mkDerivation rec {
     runHook postInstall
   '';
 
+  passthru.updateScript = unstableGitUpdater {
+    hardcodeZeroVersion = true;
+  };
+
   meta = with lib; {
     description = "Soothing pastel theme for Plymouth";
     homepage = "https://github.com/catppuccin/plymouth";
     license = licenses.mit;
     platforms = platforms.linux;
-    maintainers = [ maintainers.spectre256 ];
+    maintainers = with maintainers; [
+      johnrtitor
+      spectre256
+    ];
   };
 }