nixpkgs/pkgs/data/icons/iconpack-obsidian/default.nix

39 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, gtk3, gnome-icon-theme, mint-x-icons, hicolor-icon-theme }:
2018-05-03 19:45:57 +01:00
stdenv.mkDerivation rec {
pname = "iconpack-obsidian";
2020-11-15 07:20:00 +00:00
version = "4.14";
2018-05-03 19:45:57 +01:00
src = fetchFromGitHub {
owner = "madmaxms";
2019-11-02 12:52:01 +00:00
repo = pname;
2018-05-03 19:45:57 +01:00
rev = "v${version}";
2020-11-15 07:20:00 +00:00
sha256 = "1rhs8k88gh6673flr22cb3gbbw37wyzhd6jyysx6qgjjsnjvl2h8";
2018-05-03 19:45:57 +01:00
};
nativeBuildInputs = [ gtk3 ];
propagatedBuildInputs = [ gnome-icon-theme mint-x-icons hicolor-icon-theme ];
# still missing parent themes: Ambiant-MATE, Faenza-Dark, KFaenza
dontDropIconThemeCache = true;
2018-05-03 19:45:57 +01:00
installPhase = ''
mkdir -p $out/share/icons
mv Obsidian* $out/share/icons
2018-05-03 19:45:57 +01:00
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
done
'';
meta = with stdenv.lib; {
2020-01-20 12:44:43 +00:00
description = "Gnome icon pack based upon Faenza";
homepage = "https://github.com/madmaxms/iconpack-obsidian";
2018-05-03 19:45:57 +01:00
license = licenses.lgpl3;
# darwin cannot deal with file names differing only in case
platforms = platforms.linux;
2018-05-03 19:45:57 +01:00
maintainers = [ maintainers.romildo ];
};
}