feat(exprs): add cursors
This commit is contained in:
parent
5f2f829d38
commit
a73de7289f
5 changed files with 281 additions and 0 deletions
20
exprs/patchouli-cursors.nix
Normal file
20
exprs/patchouli-cursors.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
stdenvNoCC,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "patchouli-cursors";
|
||||
version = "0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mabequinho";
|
||||
repo = "touhou-cursors";
|
||||
rev = "92a5513c5d247fb1813e27ac2986e85def510204";
|
||||
hash = "sha256-XYmEpRkvZK7O9F7s3nKFA9rd7xO0ECEWlVyUb8/whq4=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/icons
|
||||
cp -r Patchouli $out/share/icons
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue