summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-11-14 16:29:49 -0500
committerGitHub <noreply@github.com>2021-11-14 16:29:49 -0500
commitb187fab93e5500d7ba6578f3657b5982e0888d03 (patch)
tree49c9619a6784438ea3a9ccbacb7e3025f9d77f60 /pkgs/data
parentfa0761a7c6a31ad1c00cd43f6964829c7513727b (diff)
downloadnixpkgs-b187fab93e5500d7ba6578f3657b5982e0888d03.tar
nixpkgs-b187fab93e5500d7ba6578f3657b5982e0888d03.tar.gz
nixpkgs-b187fab93e5500d7ba6578f3657b5982e0888d03.tar.bz2
nixpkgs-b187fab93e5500d7ba6578f3657b5982e0888d03.tar.lz
nixpkgs-b187fab93e5500d7ba6578f3657b5982e0888d03.tar.xz
nixpkgs-b187fab93e5500d7ba6578f3657b5982e0888d03.tar.zst
nixpkgs-b187fab93e5500d7ba6578f3657b5982e0888d03.zip
tela-icon-theme: remove darwin from platforms (#145997)
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/icons/tela-icon-theme/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/data/icons/tela-icon-theme/default.nix b/pkgs/data/icons/tela-icon-theme/default.nix
index 69f0337fcaa..61402565195 100644
--- a/pkgs/data/icons/tela-icon-theme/default.nix
+++ b/pkgs/data/icons/tela-icon-theme/default.nix
@@ -36,7 +36,8 @@ stdenvNoCC.mkDerivation rec {
     description = "A flat colorful Design icon theme";
     homepage = "https://github.com/vinceliuice/tela-icon-theme";
     license = licenses.gpl3Only;
-    platforms = platforms.unix;
+    # darwin systems use case-insensitive filesystems that cause hash mismatches
+    platforms = subtractLists platforms.darwin platforms.unix;
     maintainers = with maintainers; [ figsoda ];
   };
 }