feat(cursors): add wii cursors (WIP)
This commit is contained in:
parent
18379a72b7
commit
f3c8595eb7
21 changed files with 93 additions and 6 deletions
25
media/wii-cursors-xcursor/default.nix
Normal file
25
media/wii-cursors-xcursor/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "wii-cursor";
|
||||
version = "1.0";
|
||||
src = ./.;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/icons/wii-cursor
|
||||
install -Dm 0644 index.theme $out/share/icons/wii-cursor/index.theme
|
||||
install -Dm 0755 -t $out/share/icons/wii-cursor/cursors cursors/*
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wii Cursor";
|
||||
homepage = "https://github.com/ful1e5/apple_cursor";
|
||||
license = [
|
||||
licenses.gpl3Only
|
||||
];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue