36 lines
938 B
Nix
36 lines
938 B
Nix
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${package-name}-${version}";
|
|
package-name = "numix-icon-theme-square";
|
|
version = "18.09.19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "numixproject";
|
|
repo = package-name;
|
|
rev = version;
|
|
sha256 = "0q5p901qj3gyzgpy5kk9q5sqb13ka5cfg6wvazlfch1k3kaqksz1";
|
|
};
|
|
|
|
nativeBuildInputs = [ gtk3 numix-icon-theme ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/icons
|
|
cp -a Numix-Square{,-Light} $out/share/icons/
|
|
'';
|
|
|
|
postFixup = ''
|
|
for theme in $out/share/icons/*; do
|
|
gtk-update-icon-cache $theme
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Numix icon theme (square version)";
|
|
homepage = https://numixproject.github.io;
|
|
license = licenses.gpl3;
|
|
# darwin cannot deal with file names differing only in case
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|