laptop: pink 🌸

This commit is contained in:
Vivian 2022-08-29 22:05:10 +02:00
parent f1650b1e85
commit 9a1f4918ae
6 changed files with 83 additions and 21 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, lib, fetchFromGitHub, xorg, inkscape }:
stdenv.mkDerivation rec {
pname = "catppuccin-cursors";
version = "0.2.0";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "cursors";
rev = "3d3023606939471c45cff7b643bffc5d5d4ff29c";
sha256 = "sha256-0wb84q1VtD1myIRxrfQMn9n6w1gFzMA1rHkPqXuXLP0=";
};
nativeBuildInputs = [
xorg.xcursorgen
inkscape
];
installPhase = ''
PREFIX="/" DESTDIR=$out make install
'';
meta = with lib; {
description = "Soothing pastel mouse cursors";
homepage = "https://github.com/catppuccin/cursors";
license = licenses.gpl2;
platforms = platforms.linux;
};
}

View file

@ -10,6 +10,8 @@ final: prev: {
vmagent = prev.callPackage ./vmagent { };
catppuccin.cursors = prev.callPackage ./catppuccin/cursors { };
v = {
unbound = prev.unbound.override {
withSystemd = true;