Guest User

phinger-cursors-gruvbox-material/default.nix

a guest
Jul 18th, 2024
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. { lib, stdenvNoCC, fetchurl }:
  2.  
  3. stdenvNoCC.mkDerivation rec {
  4. pname = "phinger-cursors-gruvbox-material";
  5. version = "3328966123";
  6.  
  7. src = fetchurl {
  8. url = "https://github.com/rehanzo/phinger-cursors-gruvbox-material/releases/download/${version}/phinger-cursors-variants.tar.bz2";
  9. hash = "sha256-qAEGY3B0tphEwYGfhkJ555yLgAu1nflCjqCOfZ8vjIE=";
  10. };
  11.  
  12. sourceRoot = ".";
  13.  
  14. installPhase = ''
  15. runHook preInstall
  16. mkdir -p $out/share/icons
  17. cp -r ./phinger-cursors-gruvbox-material* $out/share/icons
  18. runHook postInstall
  19. '';
  20.  
  21. meta = with lib; {
  22. description = "The Phinger cursor theme, recolored to fit the Gruvbox Material color scheme";
  23. homepage = "https://github.com/rehanzo/phinger-cursors-gruvbox-material";
  24. platform = platforms.unix;
  25. license = licenses.cc-by-nc-40;
  26. maintainers = with maintainers; [ Fireb3rt ];
  27. };
  28. }
Advertisement
Add Comment
Please, Sign In to add comment