mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
48 lines
856 B
Nix
48 lines
856 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, cmake
|
|
, wayland
|
|
, wayland-protocols
|
|
, wayland-scanner
|
|
, hyprlang
|
|
, sdbus-cpp
|
|
, systemd
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "hypridle";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprwm";
|
|
repo = "hypridle";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-7Ft5WZTMIjXOGgRCf31DZBwK6RK8xkeKlD5vFXz3gII=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wayland-scanner
|
|
];
|
|
|
|
buildInputs = [
|
|
hyprlang
|
|
sdbus-cpp
|
|
systemd
|
|
wayland
|
|
wayland-protocols
|
|
];
|
|
|
|
meta = {
|
|
description = "Hyprland's idle daemon";
|
|
homepage = "https://github.com/hyprwm/hypridle";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ iogamaster ];
|
|
mainProgram = "hypridle";
|
|
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
|
};
|
|
})
|