1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 02:24:27 +00:00
nixpkgs/pkgs/data/icons/zafiro-icons/default.nix

30 lines
750 B
Nix
Raw Normal View History

2018-11-20 15:43:43 +00:00
{ stdenv, fetchFromGitHub, gtk3 }:
stdenv.mkDerivation rec {
pname = "zafiro-icons";
version = "0.8.1";
2018-11-20 15:43:43 +00:00
src = fetchFromGitHub {
owner = "zayronxio";
repo = pname;
rev = "v${version}";
sha256 = "121fpg74vra8kfvgxi3i7p09qxhck45kv270x6cv5dq1fp2hdm8k";
2018-11-20 15:43:43 +00:00
};
nativeBuildInputs = [ gtk3 ];
installPhase = ''
2018-12-04 19:45:41 +00:00
mkdir -p $out/share/icons/Zafiro-icons
cp -a * $out/share/icons/Zafiro-icons
gtk-update-icon-cache "$out"/share/icons/Zafiro-icons
2018-11-20 15:43:43 +00:00
'';
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 ];
};
}