wlay: init at unstable-2022-01-26
This commit is contained in:
parent
02fb17b3f3
commit
651beb2a23
2 changed files with 59 additions and 0 deletions
57
pkgs/tools/wayland/wlay/default.nix
Normal file
57
pkgs/tools/wayland/wlay/default.nix
Normal file
|
@ -0,0 +1,57 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, glfw3
|
||||
, libX11
|
||||
, libXau
|
||||
, libXdmcp
|
||||
, libepoxy
|
||||
, libffi
|
||||
, libxcb
|
||||
, pkg-config
|
||||
, wayland
|
||||
, wayland-scanner
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "wlay";
|
||||
version = "unstable-2022-01-26";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "atx";
|
||||
repo = "wlay";
|
||||
rev = "ed316060ac3ac122c0d3d8918293e19dfe9a6c90";
|
||||
hash = "sha256-Lu+EyoDHiXK9QzD4jdwbllCOCl2aEU+uK6/KxC2AUGQ=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
wayland-scanner
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
extra-cmake-modules
|
||||
glfw3
|
||||
libX11
|
||||
libXau
|
||||
libXdmcp
|
||||
libepoxy
|
||||
libffi
|
||||
libxcb
|
||||
wayland
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/atx/wlay";
|
||||
description = "Graphical output management for Wayland";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ AndersonTorres ];
|
||||
inherit (wayland.meta) platforms;
|
||||
};
|
||||
})
|
|
@ -4522,6 +4522,8 @@ with pkgs;
|
|||
|
||||
wdt = callPackage ../applications/networking/sync/wdt { };
|
||||
|
||||
wlay = callPackage ../tools/wayland/wlay { };
|
||||
|
||||
wl-clip-persist = callPackage ../tools/wayland/wl-clip-persist { };
|
||||
|
||||
wl-clipboard = callPackage ../tools/wayland/wl-clipboard { };
|
||||
|
|
Loading…
Reference in a new issue