kora-icon-theme: 1.4.1 -> 1.4.2

This commit is contained in:
bloomvdomino 2021-03-03 17:45:10 +01:00
parent e0a6314775
commit 7e16a5c16a
2 changed files with 10 additions and 5 deletions

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub , gtk3, breeze-icons, gnome-icon-theme, hicolor-icon-theme }:
{ lib, stdenv, fetchFromGitHub , gtk3, adwaita-icon-theme, breeze-icons, hicolor-icon-theme }:
stdenv.mkDerivation rec {
pname = "kora-icon-theme";
version = "1.4.1";
version = "1.4.2";
src = fetchFromGitHub {
owner = "bikass";
repo = "kora";
rev = "v${version}";
sha256 = "sha256-YGhusal8g/UXMqrQvj147OScg51uNABTMIXxVXvnpKY=";
sha256 = "1qnqz0h2c5kilch3308l8nfshgsrkllyysvqn0mxy70iziw895rv";
};
nativeBuildInputs = [
@ -16,20 +16,24 @@ stdenv.mkDerivation rec {
];
propagatedBuildInputs = [
adwaita-icon-theme
breeze-icons
gnome-icon-theme
hicolor-icon-theme
];
dontDropIconThemeCache = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
mv kora* $out/share/icons/
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
gtk-update-icon-cache -f $theme
done
runHook postInstall
'';
meta = with lib; {

View file

@ -20672,6 +20672,7 @@ in
kopia = callPackage ../tools/backup/kopia { };
kora-icon-theme = callPackage ../data/icons/kora-icon-theme {
inherit (gnome3) adwaita-icon-theme;
inherit (libsForQt5.kdeFrameworks) breeze-icons;
};