59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, cairo
|
|
, hyprlang
|
|
, librsvg
|
|
, libzip
|
|
, tomlplusplus
|
|
, nix-update-script
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "hyprcursor";
|
|
version = "0.1.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprwm";
|
|
repo = "hyprcursor";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-zJboXgWNpNhKyNF8H/3UYzWkx7w00TOCGKi3cwi+tsw=";
|
|
};
|
|
|
|
patches = [
|
|
# fix icon directories system search path
|
|
"${finalAttrs.src}/nix/dirs.patch"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
hyprlang
|
|
librsvg
|
|
libzip
|
|
tomlplusplus
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"lib"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/hyprwm/hyprcursor";
|
|
description = "The hyprland cursor format, library and utilities";
|
|
changelog = "https://github.com/hyprwm/hyprcursor/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ iynaix ];
|
|
mainProgram = "hyprcursor-util";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|