2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2020-08-13 13:57:00 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, gtk3
|
|
|
|
, breeze-icons
|
|
|
|
, hicolor-icon-theme
|
|
|
|
, pantheon
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "luna-icons";
|
2020-12-28 03:07:25 +00:00
|
|
|
version = "0.9.1";
|
2020-08-13 13:57:00 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "darkomarko42";
|
|
|
|
repo = pname;
|
2020-09-21 23:33:14 +01:00
|
|
|
rev = version;
|
2020-12-28 03:07:25 +00:00
|
|
|
sha256 = "0mz5cayjgsc109nv7kdkn3gn1n79bl3hb773lrzrr0k2zblxg353";
|
2020-08-13 13:57:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
gtk3
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
breeze-icons
|
|
|
|
hicolor-icon-theme
|
|
|
|
pantheon.elementary-icon-theme
|
|
|
|
];
|
|
|
|
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out/share/icons
|
|
|
|
cp -a Luna* $out/share/icons
|
|
|
|
|
2020-12-16 18:24:32 +00:00
|
|
|
# remove files with spaces in the name, otherwise
|
|
|
|
# gtk-update-icon-cache fails with the message "The generated cache
|
|
|
|
# was invalid"
|
|
|
|
# https://github.com/darkomarko42/Luna-Icons/issues/2
|
|
|
|
rm "$out/share/icons/Luna/scalable/apps/yast-checkmedia (copia).svg"
|
|
|
|
|
2020-08-13 13:57:00 +01:00
|
|
|
for theme in $out/share/icons/*; do
|
2020-09-21 23:33:14 +01:00
|
|
|
gtk-update-icon-cache "$theme"
|
2020-08-13 13:57:00 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-08-13 13:57:00 +01:00
|
|
|
description = "Icon pack based on marwaita and papirus icons";
|
|
|
|
homepage = "https://github.com/darkomarko42/Luna-Icons";
|
|
|
|
license = [ licenses.gpl3Only ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|