Skip to content

Commit

Permalink
Merge pull request NixOS#50844 from romildo/upd.zafiro-icons
Browse files Browse the repository at this point in the history
zafiro-icons: init at 0.7.2
  • Loading branch information
c0bw3b committed Nov 20, 2018
2 parents ff0d51d + cfc1a7f commit 371a565
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pkgs/data/icons/zafiro-icons/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, gtk3 }:

stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "zafiro-icons";
version = "0.7.2";

src = fetchFromGitHub {
owner = "zayronxio";
repo = pname;
rev = "v${version}";
sha256 = "1rs3wazmvidlkig5q7x1n9nz7jhfq18wps3wsplax9zcdy0hv248";
};

nativeBuildInputs = [ gtk3 ];

installPhase = ''
mkdir -p $out/share/icons/Zafiro
cp -a * $out/share/icons/Zafiro
gtk-update-icon-cache "$out"/share/icons/Zafiro
'';

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15682,6 +15682,8 @@ with pkgs;

xorg-rgb = callPackage ../data/misc/xorg-rgb {};

zafiro-icons = callPackage ../data/icons/zafiro-icons { };

zeal = libsForQt5.callPackage ../data/documentation/zeal { };

zilla-slab = callPackage ../data/fonts/zilla-slab { };
Expand Down

0 comments on commit 371a565

Please sign in to comment.