summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosé Romildo <malaquias@gmail.com>2023-03-19 21:54:03 -0300
committerJosé Romildo <malaquias@gmail.com>2023-04-02 23:42:47 -0300
commitef5f86f54d715b373bc561d90ff0f545a33394f7 (patch)
treecf14ca841c4516c41139f078e4a35bc40b1a93a3
parent2887b03d635fce105ebc33543e8b2a60d2c5d733 (diff)
downloadnixpkgs-ef5f86f54d715b373bc561d90ff0f545a33394f7.tar
nixpkgs-ef5f86f54d715b373bc561d90ff0f545a33394f7.tar.gz
nixpkgs-ef5f86f54d715b373bc561d90ff0f545a33394f7.tar.bz2
nixpkgs-ef5f86f54d715b373bc561d90ff0f545a33394f7.tar.lz
nixpkgs-ef5f86f54d715b373bc561d90ff0f545a33394f7.tar.xz
nixpkgs-ef5f86f54d715b373bc561d90ff0f545a33394f7.tar.zst
nixpkgs-ef5f86f54d715b373bc561d90ff0f545a33394f7.zip
colloid-gtk-theme: 2022-07-18 -> 2022.11.11
-rw-r--r--pkgs/data/themes/colloid-gtk-theme/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/data/themes/colloid-gtk-theme/default.nix b/pkgs/data/themes/colloid-gtk-theme/default.nix
index 64110048803..ccb224f5986 100644
--- a/pkgs/data/themes/colloid-gtk-theme/default.nix
+++ b/pkgs/data/themes/colloid-gtk-theme/default.nix
@@ -23,13 +23,13 @@ lib.checkListOfEnum "${pname}: tweaks" [ "nord" "black" "dracula" "rimless" "nor
 
 stdenvNoCC.mkDerivation rec {
   inherit pname;
-  version = "2022-07-18";
+  version = "2022.11.11";
 
   src = fetchFromGitHub {
     owner = "vinceliuice";
     repo = pname;
     rev = version;
-    hash = "sha256-dWYRTwfQRMBdg+htxpWatF325rToaovF/43LxX6I1GI=";
+    hash = "sha256-3uiQYiseNEKDahjurjnDj9pakx1p94BfsR3LBO2dd/s=";
   };
 
   nativeBuildInputs = [
@@ -46,7 +46,7 @@ stdenvNoCC.mkDerivation rec {
   ];
 
   postPatch = ''
-    patchShebangs install.sh clean-old-theme.sh
+    patchShebangs install.sh
   '';
 
   installPhase = ''
@@ -59,7 +59,7 @@ stdenvNoCC.mkDerivation rec {
       ${lib.optionalString (tweaks != []) "--tweaks " + builtins.toString tweaks} \
       --dest $out/share/themes
 
-    jdupes --link-soft --recurse $out/share
+    jdupes --quiet --link-soft --recurse $out/share
 
     runHook postInstall
   '';