diff --git a/devirations/material-cursors.nix b/devirations/material-cursors.nix deleted file mode 100644 index 0c14ad1..0000000 --- a/devirations/material-cursors.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ lib, pkgs, stdenvNoCC, fetchFromGitHub }: - -stdenvNoCC.mkDerivation { - pname = "material-cursors"; - version = "2023-11-30"; - - src = fetchFromGitHub { - owner = "varlesh"; - repo = "material-cursors"; - rev = "2a5f302fefe04678c421473bed636b4d87774b4a"; - hash = "sha256-uC2qx3jF4d2tGLPnXEpogm0vyC053MvDVVdVXX8AZ60="; - }; - - nativeBuildInputs = with pkgs; [ - inkscape - xorg.xcursorgen - ]; - - buildPhase = '' - runHook preBuild - - HOME=$(pwd) bash build.sh 2> /dev/null - - runHook postBuild - ''; - - installPhase = '' - runHook preInstall - - mkdir -p $out/share/icons - cp -r dist/* $out/share/icons/ - - runHook postInstall - ''; - - meta = with lib; { - description = "Material cursors for Linux"; - homepage = "https://github.com/varlesh/material-cursors"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ - RGBCube - ]; - }; -} diff --git a/flake.nix b/flake.nix index 1fb188a..62aee8e 100644 --- a/flake.nix +++ b/flake.nix @@ -71,8 +71,6 @@ icons.package = pkgs.callPackage (import ./devirations/gruvbox-icons.nix) {}; }); - material-cursors = pkgs.callPackage (import ./devirations/material-cursors.nix) {}; - hyprland = inputs.hyprland.packages.${system}.default; hyprpicker = inputs.hyprpicker.packages.${system}.default; };