first commit
This commit is contained in:
commit
58a3f28118
72 changed files with 3082 additions and 0 deletions
25
pkgs/catppuccin-cursors/default.nix
Executable file
25
pkgs/catppuccin-cursors/default.nix
Executable file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchzip,
|
||||
...
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cattpuccin-cursors";
|
||||
version = "9999";
|
||||
src = fetchzip {
|
||||
url = "https://github.com/Ruixi-rebirth/Catppuccin-cursor/archive/refs/tags/1.0.zip";
|
||||
sha256 = "sha256-RCEVxeo3oBNqHogxWM/YqfPoQotirSQTMw15zCahWto=";
|
||||
};
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/icons/Catppuccin-Frappe-Dark
|
||||
cp -va index.theme cursors $out/share/icons/Catppuccin-Frappe-Dark
|
||||
'';
|
||||
meta = {
|
||||
description = "Soothing pastel mouse cursors";
|
||||
homepage = "https://github.com/Ruixi-rebirth/Catppuccin-cursor";
|
||||
license = lib.licenses.gpl3;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = [lib.maintainers.Ruixi-rebirth];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue