summaryrefslogtreecommitdiffstats
path: root/pkgs/data
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-01-11 01:02:21 +0000
committerGitHub <noreply@github.com>2021-01-11 01:02:21 +0000
commit36bab113bfe0793dc458a8627a4eba3d88da12ec (patch)
treea4e5bb03f6923378d701c420b91ff4a14bf569b4 /pkgs/data
parentdd7235715565d6dde51b3cf5861d17484084b426 (diff)
parentf337a3fc227b056e044388b15e646a091697a4e5 (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/themes/openzone/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/data/themes/openzone/default.nix b/pkgs/data/themes/openzone/default.nix
new file mode 100644
index 000000000000..cce23bd76ea0
--- /dev/null
+++ b/pkgs/data/themes/openzone/default.nix
@@ -0,0 +1,24 @@
+{ 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 stdenv.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;
+ };
+}