nixos-config/profiles/packages/bibata-cursors-tokyonight.nix

27 lines
698 B
Nix
Raw Normal View History

2022-07-07 22:46:27 +03:00
{ lib, stdenv, fetchgit }:
2022-07-06 00:14:26 +03:00
stdenv.mkDerivation rec {
pname = "bibata-cursors-tokyonight";
version = "1.0";
2022-07-07 22:46:27 +03:00
src = fetchgit {
url = "https://code.ataraxiadev.com/AtaraxiaDev/Bibata-Modern-TokyoNight.git";
sha256 = "sha256-PREfEgv+FQZjYAQijY3bHQ/0E/L8HgJUBWeA0vdBkAA=";
};
2022-07-06 00:14:26 +03:00
phases = [ "installPhase" ];
installPhase = ''
mkdir -p "$out/share/icons"
2022-07-07 22:46:27 +03:00
cp -r $src/Bibata-Modern-TokyoNight $out/share/icons
2022-07-06 00:14:26 +03:00
'';
meta = with lib; {
description = "Material Based Cursor";
homepage = "https://code.ataraxiadev.com/AtaraxiaDev/Bibata-Modern-TokyoNight";
license = licenses.unlicense;
platforms = platforms.all;
maintainers = with maintainers; [ ];
};
}