nixpkgs-suyu/pkgs/data/icons/zafiro-icons/default.nix

36 lines
860 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, gtk3, hicolor-icon-theme }:
2018-11-20 16:43:43 +01:00
stdenv.mkDerivation rec {
pname = "zafiro-icons";
2020-04-15 13:07:03 +02:00
version = "1.1";
2018-11-20 16:43:43 +01:00
src = fetchFromGitHub {
owner = "zayronxio";
repo = pname;
2019-11-28 00:50:02 +01:00
rev = "${version}";
2020-04-15 13:07:03 +02:00
sha256 = "05h8qm9izjbp8pnl9jpbw3y9sddhp0zmg94fm1k4d4hhdqnakqhv";
2018-11-20 16:43:43 +01:00
};
nativeBuildInputs = [ gtk3 ];
propagatedBuildInputs = [
hicolor-icon-theme
];
dontDropIconThemeCache = true;
2018-11-20 16:43:43 +01:00
installPhase = ''
2018-12-04 20:45:41 +01: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 16:43:43 +01:00
'';
meta = with stdenv.lib; {
description = "Icon pack flat with light colors";
homepage = "https://github.com/zayronxio/Zafiro-icons";
2018-11-20 16:43:43 +01:00
license = with licenses; [ gpl3 ];
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}