lol

tela-circle-icon-theme: 2022-03-07 -> 2022-11-06 (#200377)

authored by

José Romildo Malaquias and committed by
GitHub
c588a77c d4926fc8

+15 -7
+12 -6
pkgs/data/icons/tela-circle-icon-theme/default.nix
··· 1 1 { lib 2 2 , stdenvNoCC 3 3 , fetchFromGitHub 4 + , adwaita-icon-theme 5 + , breeze-icons 4 6 , gtk3 5 7 , hicolor-icon-theme 6 8 , jdupes ··· 13 15 let 14 16 pname = "tela-circle-icon-theme"; 15 17 in 16 - lib.checkListOfEnum "${pname}: color variants" [ "standard" "black" "blue" "brown" "green" "grey" "orange" "pink" "purple" "red" "yellow" "manjaro" "ubuntu" ] colorVariants 18 + lib.checkListOfEnum "${pname}: color variants" [ "standard" "black" "blue" "brown" "green" "grey" "orange" "pink" "purple" "red" "yellow" "manjaro" "ubuntu" "dracula" "nord" ] colorVariants 17 19 18 20 stdenvNoCC.mkDerivation rec { 19 21 inherit pname; 20 - version = "2022-03-07"; 22 + version = "2022-11-06"; 21 23 22 24 src = fetchFromGitHub { 23 25 owner = "vinceliuice"; 24 26 repo = pname; 25 27 rev = version; 26 - sha256 = "vQeWGZmurvT/UQJ1dx6t+ZeKdJ1Oq9TdHBADw64x18g="; 28 + sha256 = "ybp+r0Ru2lJg1WipFHIowvRO5XjppI0cUxKc6kPn0lM="; 27 29 }; 28 30 29 31 nativeBuildInputs = [ ··· 32 34 ]; 33 35 34 36 propagatedBuildInputs = [ 37 + adwaita-icon-theme 38 + breeze-icons 35 39 hicolor-icon-theme 36 40 ]; 37 41 ··· 41 45 # Package may install almost 400 000 small files. 42 46 dontPatchELF = true; 43 47 dontRewriteSymlinks = true; 48 + 49 + postPatch = '' 50 + patchShebangs install.sh 51 + ''; 44 52 45 53 installPhase = '' 46 54 runHook preInstall 47 55 48 - patchShebangs install.sh 49 - 50 56 ./install.sh -d $out/share/icons \ 51 57 ${lib.optionalString circularFolder "-c"} \ 52 58 ${if allColorVariants then "-a" else builtins.toString colorVariants} 53 59 54 - jdupes --link-soft --recurse $out/share 60 + jdupes --quiet --link-soft --recurse $out/share 55 61 56 62 runHook postInstall 57 63 '';
+3 -1
pkgs/top-level/all-packages.nix
··· 26943 26943 26944 26944 theano = callPackage ../data/fonts/theano { }; 26945 26945 26946 - tela-circle-icon-theme = callPackage ../data/icons/tela-circle-icon-theme { }; 26946 + tela-circle-icon-theme = callPackage ../data/icons/tela-circle-icon-theme { 26947 + inherit (gnome) adwaita-icon-theme; 26948 + }; 26947 26949 26948 26950 tela-icon-theme = callPackage ../data/icons/tela-icon-theme { }; 26949 26951