nixpkgs/pkgs/data/icons/numix-icon-theme/default.nix

42 lines
989 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, gtk3, gnome-icon-theme, hicolor-icon-theme }:
2015-03-04 02:15:30 +00:00
stdenv.mkDerivation rec {
2018-02-24 11:31:11 +00:00
pname = "numix-icon-theme";
2021-04-14 19:56:57 +00:00
version = "21.04.14";
2015-03-04 02:15:30 +00:00
src = fetchFromGitHub {
owner = "numixproject";
2018-02-24 11:31:11 +00:00
repo = pname;
2017-12-26 17:58:12 +00:00
rev = version;
2021-04-14 19:56:57 +00:00
sha256 = "1ilzqh9f7skdfg5sl97zfgwrzvwa1zna22dpq0954gyyzvy7k7lg";
2015-03-04 02:15:30 +00:00
};
nativeBuildInputs = [ gtk3 ];
propagatedBuildInputs = [ gnome-icon-theme hicolor-icon-theme ];
dontDropIconThemeCache = true;
2015-03-04 02:15:30 +00:00
installPhase = ''
2021-04-14 19:56:57 +00:00
runHook preInstall
2018-02-24 11:31:11 +00:00
mkdir -p $out/share/icons
2019-10-01 12:47:21 +00:00
cp -a Numix{,-Light} $out/share/icons/
2018-02-24 11:31:11 +00:00
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
done
2021-04-14 19:56:57 +00:00
runHook postInstall
2015-03-04 02:15:30 +00:00
'';
meta = with lib; {
2015-03-04 02:15:30 +00:00
description = "Numix icon theme";
2020-03-30 05:50:39 +00:00
homepage = "https://numixproject.github.io";
2021-04-14 19:56:57 +00:00
license = licenses.gpl3Only;
# darwin cannot deal with file names differing only in case
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
2015-03-04 02:15:30 +00:00
};
}