1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Remove material cursors deviration since it was upstreame

This commit is contained in:
RGBCube 2023-12-05 13:54:31 +03:00
parent c1163eec84
commit a884eb181f
No known key found for this signature in database
2 changed files with 0 additions and 47 deletions

View file

@ -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
];
};
}

View file

@ -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;
};