07a7a35878
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/zafiro-icons/versions
30 lines
750 B
Nix
30 lines
750 B
Nix
{ stdenv, fetchFromGitHub, gtk3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zafiro-icons";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zayronxio";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "121fpg74vra8kfvgxi3i7p09qxhck45kv270x6cv5dq1fp2hdm8k";
|
|
};
|
|
|
|
nativeBuildInputs = [ gtk3 ];
|
|
|
|
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 ];
|
|
};
|
|
}
|