hyprcursor: 0.1.9 -> 0.1.10 (#345851)

authored by

Masum Reza and committed by
GitHub
97b7fe94 1533196d

+16 -18
+16 -18
pkgs/by-name/hy/hyprcursor/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromGitHub 4 - , cmake 5 - , pkg-config 6 - , cairo 7 - , hyprlang 8 - , librsvg 9 - , libzip 10 - , tomlplusplus 11 - , nix-update-script 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + pkg-config, 7 + cairo, 8 + hyprlang, 9 + librsvg, 10 + libzip, 11 + xcur2png, 12 + tomlplusplus, 13 + nix-update-script, 12 14 }: 13 15 stdenv.mkDerivation (finalAttrs: { 14 16 pname = "hyprcursor"; 15 - version = "0.1.9"; 17 + version = "0.1.10"; 16 18 17 19 src = fetchFromGitHub { 18 20 owner = "hyprwm"; 19 21 repo = "hyprcursor"; 20 22 rev = "refs/tags/v${finalAttrs.version}"; 21 - hash = "sha256-FIN1wMoyePBTtibCbaeJaoKNLuAYIGwLCWAYC1DJanw="; 23 + hash = "sha256-NqihN/x8T4+wumSP1orwCCdEmD2xWgLR5QzfY+kAtuU="; 22 24 }; 23 - 24 - patches = [ 25 - # fix icon directories system search path 26 - "${finalAttrs.src}/nix/dirs.patch" 27 - ]; 28 25 29 26 nativeBuildInputs = [ 30 27 cmake ··· 36 33 hyprlang 37 34 librsvg 38 35 libzip 36 + xcur2png 39 37 tomlplusplus 40 38 ]; 41 39