Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
966 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
extra-cmake-modules,
glfw3,
libX11,
libXau,
libXdmcp,
libepoxy,
libffi,
libxcb,
pkg-config,
wayland,
wayland-scanner,
}:
stdenv.mkDerivation {
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
extra-cmake-modules
pkg-config
wayland-scanner
];
buildInputs = [
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 = [ ];
inherit (wayland.meta) platforms;
mainProgram = "wlay";
};
}