summary refs log blame commit diff
path: root/pkgs/data/icons/numix-icon-theme-circle/default.nix
blob: 5658f20c7446018f1e61bdc89aaede89770d8f4e (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                        

                         
                                    
                       
 

                           
                 
                  
                                                                    

    
                                                
 





                                
                   

                                                                            
     
 





                                       
                           
                                                      
                                              
                            

                                                               
                                                

    
{ stdenv, fetchFromGitHub, gtk3, numix-icon-theme, hicolor-icon-theme }:

stdenv.mkDerivation rec {
  pname = "numix-icon-theme-circle";
  version = "19.09.20";

  src = fetchFromGitHub {
    owner = "numixproject";
    repo = pname;
    rev = version;
    sha256 = "1pmz2dy1580ln5m57xw3vhqrjhviayisgbs2km3i77hyx66hiivi";
  };

  nativeBuildInputs = [ gtk3 numix-icon-theme ];

  propagatedBuildInputs = [
    hicolor-icon-theme
  ];

  dontDropIconThemeCache = true;

  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; [ romildo ];
  };
}