25 lines
		
	
	
		
			648 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			648 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, stdenv, fetchFromGitHub, icon-slicer, xcursorgen }:
 | |
| stdenv.mkDerivation rec {
 | |
|   pname = "openzone-cursors";
 | |
|   version = "1.2.9";
 | |
| 
 | |
|   src = fetchFromGitHub {
 | |
|     owner = "ducakar";
 | |
|     repo = pname;
 | |
|     rev = "v${version}";
 | |
|     sha256 = "02c536mc17ccsrzgma366k3wlm02ivklvr30fafxl981zgghlii4";
 | |
|   };
 | |
| 
 | |
|   nativeBuildInputs = [ icon-slicer xcursorgen ];
 | |
| 
 | |
|   makeFlags = [ "DESTDIR=$(out)" ];
 | |
| 
 | |
|   meta = with lib; {
 | |
|     description = "Clean and sharp X11/Wayland cursor theme";
 | |
|     homepage = "https://www.gnome-look.org/p/999999/";
 | |
|     license = licenses.mit;
 | |
|     maintainers = with maintainers; [ zaninime ];
 | |
|     platforms = platforms.linux;
 | |
|   };
 | |
| }
 | 
