Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 24 lines 648 B view raw
1{ lib, stdenv, fetchFromGitHub, icon-slicer, xcursorgen }: 2stdenv.mkDerivation rec { 3 pname = "openzone-cursors"; 4 version = "1.2.9"; 5 6 src = fetchFromGitHub { 7 owner = "ducakar"; 8 repo = pname; 9 rev = "v${version}"; 10 sha256 = "02c536mc17ccsrzgma366k3wlm02ivklvr30fafxl981zgghlii4"; 11 }; 12 13 nativeBuildInputs = [ icon-slicer xcursorgen ]; 14 15 makeFlags = [ "DESTDIR=$(out)" ]; 16 17 meta = with lib; { 18 description = "Clean and sharp X11/Wayland cursor theme"; 19 homepage = "https://www.gnome-look.org/p/999999/"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ zaninime ]; 22 platforms = platforms.linux; 23 }; 24}