nixpkgs/pkgs/development/libraries/libdecor/default.nix
pacien 036ed9b9f1 libdecor: add missing dep egl (fix cross-compile)
This adds a missing runtime dependency necessary when cross-compiling,
solving the following error:

> Run-time dependency egl found: NO (tried pkgconfig)
> demo/meson.build:7:0: ERROR: Dependency "egl" not found, tried pkgconfig
2022-07-17 23:32:02 +02:00

56 lines
937 B
Nix

{ stdenv
, lib
, fetchFromGitLab
, pkg-config
, meson
, ninja
, wayland
, wayland-protocols
, wayland-scanner
, egl-wayland
, cairo
, dbus
, pango
, libxkbcommon
}:
stdenv.mkDerivation rec {
pname = "libdecor";
version = "0.1.0";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "jadahl";
repo = "libdecor";
rev = "${version}";
sha256 = "0qdg3r7k086wzszr969s0ljlqdvfqm31zpl8p5h397bw076zr6p2";
};
strictDeps = true;
nativeBuildInputs = [
meson
ninja
pkg-config
wayland-scanner
];
buildInputs = [
wayland
wayland-protocols
egl-wayland
cairo
dbus
pango
libxkbcommon
];
meta = with lib; {
homepage = "https://gitlab.gnome.org/jadahl/libdecor";
description = "Client-side decorations library for Wayland clients";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ artturin ];
};
}