nixpkgs/pkgs/data/icons/oranchelo-icon-theme/default.nix
kilianar a699e5e1ef oranchelo-icon-theme: 0.8.0.1 -> 0.9.0
https://github.com/OrancheloTeam/oranchelo-icon-theme/releases/tag/v0.9.0

We use the upstream Makefile instead of copying the files manually in
the installPhase.
2022-08-11 12:12:19 +02:00

47 lines
1.1 KiB
Nix

{ lib, stdenvNoCC, fetchFromGitHub, gtk3, plasma5Packages, hicolor-icon-theme }:
stdenvNoCC.mkDerivation rec {
pname = "oranchelo-icon-theme";
version = "0.9.0";
src = fetchFromGitHub {
owner = "OrancheloTeam";
repo = pname;
rev = "v${version}";
sha256 = "sha256-IDsZj/X9rFSdDpa3bL6IPEPCRe5GustPteDxSbfz+SA=";
};
nativeBuildInputs = [
gtk3
];
propagatedBuildInputs = [
plasma5Packages.breeze-icons
hicolor-icon-theme
];
dontDropIconThemeCache = true;
makeFlags = [
"DESTDIR=$(out)"
"PREFIX="
];
postInstall = ''
# space in icon name causes gtk-update-icon-cache to fail
mv "$out/share/icons/Oranchelo/apps/scalable/ grsync.svg" "$out/share/icons/Oranchelo/apps/scalable/grsync.svg"
for theme in $out/share/icons/*; do
gtk-update-icon-cache "$theme"
done
'';
meta = with lib; {
description = "Oranchelo icon theme";
homepage = "https://github.com/OrancheloTeam/oranchelo-icon-theme";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ _414owen ];
};
}