nixpkgs/pkgs/data/icons/bibata-cursors/translucent.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
733 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchFromGitHub }:
2019-10-23 01:39:07 +00:00
stdenvNoCC.mkDerivation rec {
2019-10-23 01:39:07 +00:00
pname = "bibata-cursors-translucent";
version = "1.1.2";
2019-10-23 01:39:07 +00:00
src = fetchFromGitHub {
owner = "Silicasandwhich";
repo = "Bibata_Cursor_Translucent";
rev = "v${version}";
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/
'';
meta = with lib; {
2019-10-23 01:39:07 +00:00
description = "Translucent Varient of the Material Based Cursor";
homepage = "https://github.com/Silicasandwhich/Bibata_Cursor_Translucent";
2019-10-23 01:39:07 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ dtzWill AdsonCicilioti ];
2019-10-23 01:39:07 +00:00
};
}