Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 30 lines 732 B view raw
1{ 2 lib, 3 stdenvNoCC, 4 fetchFromGitHub, 5}: 6 7stdenvNoCC.mkDerivation rec { 8 pname = "bibata-cursors-translucent"; 9 version = "1.1.2"; 10 11 src = fetchFromGitHub { 12 owner = "Silicasandwhich"; 13 repo = "Bibata_Cursor_Translucent"; 14 rev = "v${version}"; 15 sha256 = "sha256-RroynJfdFpu+Wl9iw9NrAc9wNZsSxWI+heJXUTwEe7s="; 16 }; 17 18 installPhase = '' 19 install -dm 0755 $out/share/icons 20 cp -pr Bibata_* $out/share/icons/ 21 ''; 22 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 }; 30}