46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { stdenv, fetchFromGitHub, gtk3, numix-icon-theme, hicolor-icon-theme }:
 | |
| 
 | |
| stdenv.mkDerivation rec {
 | |
|   pname = "numix-icon-theme-square";
 | |
|   version = "19.12.27";
 | |
| 
 | |
|   src = fetchFromGitHub {
 | |
|     owner = "numixproject";
 | |
|     repo = pname;
 | |
|     rev = version;
 | |
|     sha256 = "0pjbi2g7wk8gyr4lvp8fvcb8z29kc3l6v19a45axgadnc609hqw7";
 | |
|   };
 | |
| 
 | |
|   nativeBuildInputs = [ gtk3 ];
 | |
| 
 | |
|   buildInputs = [ numix-icon-theme ];
 | |
| 
 | |
|   propagatedBuildInputs = [ hicolor-icon-theme ];
 | |
| 
 | |
|   dontDropIconThemeCache = true;
 | |
| 
 | |
|   installPhase = ''
 | |
|     mkdir -p $out/share/icons
 | |
|     cp -a Numix-Square{,-Light} $out/share/icons/
 | |
|   '';
 | |
| 
 | |
|   postFixup = ''
 | |
|     for panel in $out/share/icons/*/*/panel; do
 | |
|       ln -sf $(realpath ${numix-icon-theme}/share/icons/Numix/16/$(readlink $panel)) $panel
 | |
|     done
 | |
| 
 | |
|     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 ];
 | |
|   };
 | |
| }
 | 
