vimix-cursors: fix build

The `cairosvg` executable is no longer supplied by
`python3Packages.cairosvg`, use the top-level package instead.
This commit is contained in:
Bruno BELANYI 2025-06-03 10:21:39 +00:00
parent b4f5e9ff81
commit ab77870a4b

View file

@ -2,8 +2,8 @@
lib, lib,
fetchFromGitHub, fetchFromGitHub,
stdenvNoCC, stdenvNoCC,
cairosvg,
inkscape, inkscape,
python3Packages,
xcursorgen, xcursorgen,
}: }:
stdenvNoCC.mkDerivation { stdenvNoCC.mkDerivation {
@ -18,8 +18,8 @@ stdenvNoCC.mkDerivation {
}; };
nativeBuildInputs = [ nativeBuildInputs = [
cairosvg
inkscape inkscape
python3Packages.cairosvg
xcursorgen xcursorgen
]; ];