capitaine-cursors-themed: init at r5
This commit is contained in:
parent
76eb4a3332
commit
1d852d7bcd
2 changed files with 23 additions and 0 deletions
21
pkgs/data/icons/capitaine-cursors-themed/default.nix
Normal file
21
pkgs/data/icons/capitaine-cursors-themed/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ lib, fetchzip }:
|
||||||
|
fetchzip rec {
|
||||||
|
pname = "capitaine-cursors-themed";
|
||||||
|
version = "5";
|
||||||
|
stripRoot = false;
|
||||||
|
url = "https://github.com/sainnhe/capitaine-cursors/releases/download/r${version}/Linux.zip";
|
||||||
|
sha256 = "jQNAXuR/OtvohWziGYgb5Ni2/tEIGaY9HIyUUW793EY=";
|
||||||
|
|
||||||
|
postFetch = ''
|
||||||
|
mkdir -p $out/share/icons
|
||||||
|
cp -r ./ $out/share/icons
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A fork of the capitaine cursor theme, with some additional variants (Gruvbox, Nord, Palenight) and support for HiDPI";
|
||||||
|
homepage = "https://github.com/sainnhe/capitaine-cursors";
|
||||||
|
license = licenses.lgpl3Only;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = [ maintainers.math-42 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -26505,6 +26505,8 @@ with pkgs;
|
||||||
|
|
||||||
capitaine-cursors = callPackage ../data/icons/capitaine-cursors { };
|
capitaine-cursors = callPackage ../data/icons/capitaine-cursors { };
|
||||||
|
|
||||||
|
capitaine-cursors-themed = callPackage ../data/icons/capitaine-cursors-themed { };
|
||||||
|
|
||||||
carlito = callPackage ../data/fonts/carlito {};
|
carlito = callPackage ../data/fonts/carlito {};
|
||||||
|
|
||||||
cascadia-code = callPackage ../data/fonts/cascadia-code { };
|
cascadia-code = callPackage ../data/fonts/cascadia-code { };
|
||||||
|
|
Loading…
Reference in a new issue