mirror of
https://github.com/hyprwm/hyprcursor.git
synced 2024-11-17 02:35:57 +01:00
43 lines
607 B
Nix
43 lines
607 B
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
cmake,
|
||
|
pkg-config,
|
||
|
cairo,
|
||
|
hyprlang,
|
||
|
librsvg,
|
||
|
libzip,
|
||
|
version ? "git",
|
||
|
}:
|
||
|
stdenv.mkDerivation {
|
||
|
pname = "hyprcursor";
|
||
|
inherit version;
|
||
|
src = ../.;
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
cairo
|
||
|
hyprlang
|
||
|
librsvg
|
||
|
libzip
|
||
|
];
|
||
|
|
||
|
outputs = [
|
||
|
"bin"
|
||
|
"dev"
|
||
|
"lib"
|
||
|
];
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://github.com/hyprwm/hyprcursor";
|
||
|
description = "The hyprland cursor format, library and utilities";
|
||
|
license = lib.licenses.bsd3;
|
||
|
platforms = lib.platforms.linux;
|
||
|
mainProgram = "hyprcursor";
|
||
|
};
|
||
|
}
|