1 { lib, stdenvNoCC, fetchFromGitHub, gtk3, gnome-icon-theme, mint-x-icons, hicolor-icon-theme }:
3 stdenvNoCC.mkDerivation rec {
4 pname = "iconpack-obsidian";
7 src = fetchFromGitHub {
11 sha256 = "1f32isq1xyn9b6p1nx5rssqgg9gw0jp9ld19860xk29fspmlfb8n";
14 nativeBuildInputs = [ gtk3 ];
16 propagatedBuildInputs = [ gnome-icon-theme mint-x-icons hicolor-icon-theme ];
17 # still missing parent themes: Ambiant-MATE, Faenza-Dark, KFaenza
19 dontDropIconThemeCache = true;
22 mkdir -p $out/share/icons
23 mv Obsidian* $out/share/icons
25 for theme in $out/share/icons/*; do
26 gtk-update-icon-cache $theme
31 description = "Gnome icon pack based upon Faenza";
32 homepage = "https://github.com/madmaxms/iconpack-obsidian";
33 license = licenses.gpl3Only;
34 # darwin cannot deal with file names differing only in case
35 platforms = platforms.linux;
36 maintainers = [ maintainers.romildo ];