2022-07-02 00:04:21 +00:00
|
|
|
{ lib, stdenvNoCC, fetchFromGitHub }:
|
2019-10-23 01:39:07 +00:00
|
|
|
|
2022-07-02 00:04:21 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
2019-10-23 01:39:07 +00:00
|
|
|
pname = "bibata-cursors-translucent";
|
2022-10-09 04:06:07 +00:00
|
|
|
version = "1.1.2";
|
2020-09-10 18:38:25 +00:00
|
|
|
|
2019-10-23 01:39:07 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Silicasandwhich";
|
|
|
|
repo = "Bibata_Cursor_Translucent";
|
2021-12-08 00:40:15 +00:00
|
|
|
rev = "v${version}";
|
2022-10-09 04:06:07 +00:00
|
|
|
sha256 = "sha256-RroynJfdFpu+Wl9iw9NrAc9wNZsSxWI+heJXUTwEe7s=";
|
2019-10-23 01:39:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -dm 0755 $out/share/icons
|
|
|
|
cp -pr Bibata_* $out/share/icons/
|
|
|
|
'';
|
|
|
|
|
2021-01-17 13:51:41 +00:00
|
|
|
meta = with lib; {
|
2019-10-23 01:39:07 +00:00
|
|
|
description = "Translucent Varient of the Material Based Cursor";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Silicasandwhich/Bibata_Cursor_Translucent";
|
2019-10-23 01:39:07 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
2021-12-08 00:40:15 +00:00
|
|
|
maintainers = with maintainers; [ dtzWill AdsonCicilioti ];
|
2019-10-23 01:39:07 +00:00
|
|
|
};
|
|
|
|
}
|