Merge pull request #210419 from Math-42/capitaine-cursors-themed

capitaine-cursors-themed: init at r5
This commit is contained in:
Anderson Torres 2023-01-13 01:48:42 -03:00 committed by GitHub
commit b111b33889
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View 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 ];
};
}

View file

@ -26564,6 +26564,8 @@ with pkgs;
capitaine-cursors = callPackage ../data/icons/capitaine-cursors { };
capitaine-cursors-themed = callPackage ../data/icons/capitaine-cursors-themed { };
carlito = callPackage ../data/fonts/carlito {};
cascadia-code = callPackage ../data/fonts/cascadia-code { };