ffedc3e4a9
Unfortunately I don't have the time anymore to maintain those packages.
36 lines
911 B
Nix
36 lines
911 B
Nix
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "numix-icon-theme-circle";
|
|
version = "19.02.22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "numixproject";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "10jh633rllp9yjfkjjyf8455n84q7ppxw1kk9dp1rsg4dq327ks7";
|
|
};
|
|
|
|
nativeBuildInputs = [ gtk3 numix-icon-theme ];
|
|
|
|
installPhase = ''
|
|
install -dm 755 $out/share/icons
|
|
cp -dr --no-preserve='ownership' Numix-Circle{,-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 (circle 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; [ ];
|
|
};
|
|
}
|