mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub, gtk3, breeze-icons, gnome-icon-theme, numix-icon-theme, numix-icon-theme-circle, hicolor-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zafiro-icons";
|
|
version = "1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zayronxio";
|
|
repo = pname;
|
|
rev = "${version}";
|
|
sha256 = "05h8qm9izjbp8pnl9jpbw3y9sddhp0zmg94fm1k4d4hhdqnakqhv";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
breeze-icons
|
|
gnome-icon-theme
|
|
numix-icon-theme
|
|
numix-icon-theme-circle
|
|
hicolor-icon-theme
|
|
# still missing parent icon themes: Surfn
|
|
];
|
|
|
|
dontDropIconThemeCache = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/icons/Zafiro-icons
|
|
cp -a * $out/share/icons/Zafiro-icons
|
|
gtk-update-icon-cache "$out"/share/icons/Zafiro-icons
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Icon pack flat with light colors";
|
|
homepage = "https://github.com/zayronxio/Zafiro-icons";
|
|
license = with licenses; [ gpl3 ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|