stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127)
[NixPkgs.git] / pkgs / data / icons / bibata-cursors / translucent.nix
blobac7e8c2ce6778474ecba546ef50ce584ab97c6e4
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5 }:
7 stdenvNoCC.mkDerivation rec {
8   pname = "bibata-cursors-translucent";
9   version = "1.1.2";
11   src = fetchFromGitHub {
12     owner = "Silicasandwhich";
13     repo = "Bibata_Cursor_Translucent";
14     rev = "v${version}";
15     sha256 = "sha256-RroynJfdFpu+Wl9iw9NrAc9wNZsSxWI+heJXUTwEe7s=";
16   };
18   installPhase = ''
19     install -dm 0755 $out/share/icons
20     cp -pr Bibata_* $out/share/icons/
21   '';
23   meta = with lib; {
24     description = "Translucent Varient of the Material Based Cursor";
25     homepage = "https://github.com/Silicasandwhich/Bibata_Cursor_Translucent";
26     license = licenses.gpl3;
27     platforms = platforms.linux;
28     maintainers = with maintainers; [ AdsonCicilioti ];
29   };