3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/icons/zafiro-icons/default.nix
R. RyanTM 3242032907 zafiro-icons: 0.8.3 -> 0.8.4
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
2019-01-28 16:50:30 +00:00

30 lines
750 B
Nix

{ stdenv, fetchFromGitHub, gtk3 }:
stdenv.mkDerivation rec {
pname = "zafiro-icons";
version = "0.8.4";
src = fetchFromGitHub {
owner = "zayronxio";
repo = pname;
rev = "v${version}";
sha256 = "1jdijiccazn2g42x1w1m4hl94ach9b2kl3rwb0mpy7ykdzmj6vj0";
};
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 ];
};
}