1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-10 18:12:34 +09:00

tela-icon-theme: remove darwin from platforms (#145997)

This commit is contained in:
figsoda 2021-11-14 16:29:49 -05:00 committed by GitHub
parent fa0761a7c6
commit b187fab93e
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}