about summary refs log tree commit diff
path: root/pkgs/data/themes
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2024-01-10 02:14:42 +0100
committerGitHub <noreply@github.com>2024-01-10 02:14:42 +0100
commit48c0afc5b37142f04f76927f46e37003f46bf71a (patch)
treebe424a8b00a4bb359fb38b66d8a0ff813cd4d16e /pkgs/data/themes
parent94ab3111bb761a9eb09f453b78108c9199b4d83e (diff)
parent9a3f68f06824cbde010d0ee3a8a5eb17a3828c0a (diff)
downloadnixlib-48c0afc5b37142f04f76927f46e37003f46bf71a.tar
nixlib-48c0afc5b37142f04f76927f46e37003f46bf71a.tar.gz
nixlib-48c0afc5b37142f04f76927f46e37003f46bf71a.tar.bz2
nixlib-48c0afc5b37142f04f76927f46e37003f46bf71a.tar.lz
nixlib-48c0afc5b37142f04f76927f46e37003f46bf71a.tar.xz
nixlib-48c0afc5b37142f04f76927f46e37003f46bf71a.tar.zst
nixlib-48c0afc5b37142f04f76927f46e37003f46bf71a.zip
Merge pull request #277486 from msfjarvis/hs/dracula-bump
Diffstat (limited to 'pkgs/data/themes')
-rw-r--r--pkgs/data/themes/dracula-theme/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/data/themes/dracula-theme/default.nix b/pkgs/data/themes/dracula-theme/default.nix
index b555b9197403..e4cfce0adbe1 100644
--- a/pkgs/data/themes/dracula-theme/default.nix
+++ b/pkgs/data/themes/dracula-theme/default.nix
@@ -1,8 +1,8 @@
-{ lib, stdenvNoCC, fetchFromGitHub, gtk-engine-murrine }:
+{ lib, stdenvNoCC, fetchFromGitHub, unstableGitUpdater, gtk-engine-murrine }:
 
 let
   themeName = "Dracula";
-  version = "4.0.0";
+  version = "unstable-2023-12-16";
 in
 stdenvNoCC.mkDerivation {
   pname = "dracula-theme";
@@ -11,8 +11,8 @@ stdenvNoCC.mkDerivation {
   src = fetchFromGitHub {
     owner = "dracula";
     repo = "gtk";
-    rev = "v${version}";
-    hash = "sha256-q3/uBd+jPFhiVAllyhqf486Jxa0mnCDSIqcm/jwGtJA=";
+    rev = "80d5a3fedf280e9cc7f2df3b100a1082c3bcd1cc";
+    hash = "sha256-BPL0Msva1/sPQKPeRJHgvU+xXU3m8b2E6aDBLmXbkkA=";
   };
 
   propagatedUserEnvPkgs = [
@@ -38,11 +38,13 @@ stdenvNoCC.mkDerivation {
     runHook postInstall
   '';
 
+  passthru.updateScript = unstableGitUpdater { };
+
   meta = with lib; {
     description = "Dracula variant of the Ant theme";
     homepage = "https://github.com/dracula/gtk";
     license = licenses.gpl3;
     platforms = platforms.all;
-    maintainers = with maintainers; [ alexarice ];
+    maintainers = with maintainers; [ alexarice msfjarvis ];
   };
 }