anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / data / icons / bibata-cursors / translucent.nix
blob7cae52a3e4de85a4c425ffad647abe7a131fac1f
1 { lib, stdenvNoCC, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "bibata-cursors-translucent";
5   version = "1.1.2";
7   src = fetchFromGitHub {
8     owner = "Silicasandwhich";
9     repo = "Bibata_Cursor_Translucent";
10     rev = "v${version}";
11     sha256 = "sha256-RroynJfdFpu+Wl9iw9NrAc9wNZsSxWI+heJXUTwEe7s=";
12   };
14   installPhase = ''
15     install -dm 0755 $out/share/icons
16     cp -pr Bibata_* $out/share/icons/
17   '';
19   meta = with lib; {
20     description = "Translucent Varient of the Material Based Cursor";
21     homepage = "https://github.com/Silicasandwhich/Bibata_Cursor_Translucent";
22     license = licenses.gpl3;
23     platforms = platforms.linux;
24     maintainers = with maintainers; [ AdsonCicilioti ];
25   };