Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-03-22 00:45:52 +00:00
committed by GitHub
87 changed files with 769 additions and 301 deletions
+9 -5
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; {