hyprlock: init at 0.1.0
This commit is contained in:
parent
043e316272
commit
051c623791
1 changed files with 80 additions and 0 deletions
80
pkgs/by-name/hy/hyprlock/package.nix
Normal file
80
pkgs/by-name/hy/hyprlock/package.nix
Normal file
|
@ -0,0 +1,80 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, pkg-config
|
||||
, libGL
|
||||
, libxkbcommon
|
||||
, hyprlang
|
||||
, pam
|
||||
, wayland
|
||||
, wayland-protocols
|
||||
, cairo
|
||||
, pango
|
||||
, libdrm
|
||||
, mesa
|
||||
, nix-update-script
|
||||
, expat
|
||||
, libXdmcp
|
||||
, pcre2
|
||||
, util-linux
|
||||
, libselinux
|
||||
, libsepol
|
||||
, pcre
|
||||
, fribidi
|
||||
, libthai
|
||||
, libdatrie
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "hyprlock";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hyprwm";
|
||||
repo = "hyprlock";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-SX3VRcewkqeAIY6ptgfk9+C6KB9aCEUOacb2pKl3kO0=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
cairo
|
||||
expat
|
||||
fribidi
|
||||
hyprlang
|
||||
libdatrie
|
||||
libdrm
|
||||
libGL
|
||||
libselinux
|
||||
libsepol
|
||||
libthai
|
||||
libXdmcp
|
||||
libxkbcommon
|
||||
mesa
|
||||
pam
|
||||
pango
|
||||
pcre
|
||||
pcre2
|
||||
util-linux
|
||||
wayland
|
||||
wayland-protocols
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Hyprland's GPU-accelerated screen locking utility";
|
||||
homepage = "https://github.com/hyprwm/hyprlock";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ eclairevoyant ];
|
||||
mainProgram = "hyprlock";
|
||||
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue