28 lines
672 B
Nix
28 lines
672 B
Nix
![]() |
{ lib, stdenv, fetchurl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "bibata-cursors";
|
||
|
version = "1.0.3";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ful1e5/Bibata_Cursor/releases/download/v${version}/Bibata.tar.gz";
|
||
|
sha256 = "1kywj7lvpg3d4dydh2d55gcggpwjcafvm87rqc0wsj1w0p7gy10b";
|
||
|
};
|
||
|
|
||
|
phases = [
|
||
|
"installPhase"
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p "$out/share/icons"
|
||
|
tar -xf $src --directory "$out/share/icons/"
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Material Based Cursor";
|
||
|
homepage = "https://github.com/ful1e5/Bibata_Cursor";
|
||
|
license = licenses.gpl3;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = with maintainers; [ ];
|
||
|
};
|
||
|
}
|