summary refs log tree commit diff
path: root/pkgs/data/icons
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-26 15:44:42 +0200
committerGitHub <noreply@github.com>2023-06-26 15:44:42 +0200
commite443a2567496c92b2f89c709c67d5a7e02f4b6c4 (patch)
treeba20ff10e517194b0e3edbfd5d56c3989c5eae27 /pkgs/data/icons
parentbe10d3e74bde445af511a399d082dc7dc5c1c89a (diff)
parentca6f61927794c25e97e16bc03c5fa0b2a14e38fd (diff)
downloadnixpkgs-e443a2567496c92b2f89c709c67d5a7e02f4b6c4.tar
nixpkgs-e443a2567496c92b2f89c709c67d5a7e02f4b6c4.tar.gz
nixpkgs-e443a2567496c92b2f89c709c67d5a7e02f4b6c4.tar.bz2
nixpkgs-e443a2567496c92b2f89c709c67d5a7e02f4b6c4.tar.lz
nixpkgs-e443a2567496c92b2f89c709c67d5a7e02f4b6c4.tar.xz
nixpkgs-e443a2567496c92b2f89c709c67d5a7e02f4b6c4.tar.zst
nixpkgs-e443a2567496c92b2f89c709c67d5a7e02f4b6c4.zip
Merge pull request #239762 from figsoda/tela
tela-icon-theme: 2023-02-03 -> 2023-06-25
Diffstat (limited to 'pkgs/data/icons')
-rw-r--r--pkgs/data/icons/tela-icon-theme/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/data/icons/tela-icon-theme/default.nix b/pkgs/data/icons/tela-icon-theme/default.nix
index 2b98e09eca2..f77ab73032c 100644
--- a/pkgs/data/icons/tela-icon-theme/default.nix
+++ b/pkgs/data/icons/tela-icon-theme/default.nix
@@ -2,13 +2,13 @@
 
 stdenvNoCC.mkDerivation rec {
   pname = "tela-icon-theme";
-  version = "2023-02-03";
+  version = "2023-06-25";
 
   src = fetchFromGitHub {
     owner = "vinceliuice";
-    repo = pname;
+    repo = "tela-icon-theme";
     rev = version;
-    sha256 = "sha256-W3gGn4ioTg/iOWTa5hfwx6FWzpFilpG8IXwaO5/YAvk=";
+    hash = "sha256-tv0C4mW2A3dScUXBWa7a3lkG4lPIjZTsj5b1/oEVuiw=";
   };
 
   nativeBuildInputs = [ gtk3 jdupes ];
@@ -35,6 +35,7 @@ stdenvNoCC.mkDerivation rec {
   meta = with lib; {
     description = "A flat colorful Design icon theme";
     homepage = "https://github.com/vinceliuice/tela-icon-theme";
+    changelog = "https://github.com/vinceliuice/Tela-icon-theme/releases/tag/${src.rev}";
     license = licenses.gpl3Only;
     # darwin systems use case-insensitive filesystems that cause hash mismatches
     platforms = subtractLists platforms.darwin platforms.unix;