nixpkgs/pkgs/data/themes/openzone/default.nix

25 lines
648 B
Nix
Raw Normal View History

2021-01-15 07:29:18 +00:00
{ lib, stdenv, fetchFromGitHub, icon-slicer, xcursorgen }:
2020-10-26 21:28:47 +00:00
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)" ];
2021-01-15 07:29:18 +00:00
meta = with lib; {
2020-10-26 21:28:47 +00:00
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;
};
}