Merge pull request #192006 from Icy-Thought/fluent-icon-theme

This commit is contained in:
Sandro 2022-09-26 14:39:40 +02:00 committed by GitHub
commit 0905d910c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,34 +6,23 @@
, jdupes , jdupes
, roundedIcons ? false , roundedIcons ? false
, blackPanelIcons ? false , blackPanelIcons ? false
, colorVariants ? [] , colorVariants ? [ ]
, ,
}: }:
let let
pname = "Fluent-icon-theme"; pname = "Fluent-icon-theme";
in in
lib.checkListOfEnum "${pname}: available color variants" [ lib.checkListOfEnum "${pname}: available color variants" [ "standard" "green" "grey" "orange" "pink" "purple" "red" "yellow" "teal" "all" ] colorVariants
"standard"
"green"
"grey"
"orange"
"pink"
"purple"
"red"
"yellow"
"teal"
"all"
] colorVariants
stdenvNoCC.mkDerivation rec { stdenvNoCC.mkDerivation rec {
inherit pname; inherit pname;
version = "2022-02-28"; version = "2022-09-20";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vinceliuice"; owner = "vinceliuice";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "UMj3qF9lhd9kM7J/3RtG3AiWlBontrowfsFOb3yr0tQ="; sha256 = "Ce8LTIxKabeqV9QVK68DqUVwtwG5lyxDPDQx0mLIr5o=";
}; };
nativeBuildInputs = [ gtk3 jdupes ]; nativeBuildInputs = [ gtk3 jdupes ];