traefik: add djds as maintainer (#377217)
[NixPkgs.git] / pkgs / by-name / op / openzone-cursors / package.nix
blobf575ae22a49f53697d8500d6370be1c4c895a459
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   icon-slicer,
6   xcursorgen,
7 }:
8 stdenv.mkDerivation rec {
9   pname = "openzone-cursors";
10   version = "1.2.9";
12   src = fetchFromGitHub {
13     owner = "ducakar";
14     repo = pname;
15     rev = "v${version}";
16     sha256 = "02c536mc17ccsrzgma366k3wlm02ivklvr30fafxl981zgghlii4";
17   };
19   nativeBuildInputs = [
20     icon-slicer
21     xcursorgen
22   ];
24   makeFlags = [ "DESTDIR=$(out)" ];
26   meta = with lib; {
27     description = "Clean and sharp X11/Wayland cursor theme";
28     homepage = "https://www.gnome-look.org/p/999999/";
29     license = licenses.mit;
30     maintainers = with maintainers; [ zaninime ];
31     platforms = platforms.linux;
32   };