69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, gtk-doc
|
|
, docbook-xsl-nons
|
|
, docbook_xml_dtd_43
|
|
, wayland-protocols
|
|
, wayland-scanner
|
|
, wayland
|
|
, gtk4
|
|
, gobject-introspection
|
|
, vala
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gtk4-layer-shell";
|
|
version = "1.0.3";
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
outputBin = "devdoc";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wmww";
|
|
repo = "gtk4-layer-shell";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-oGtU1H1waA8ZAjaLMdb+x0KIIwgjhdn38ra/eFVWfFI=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gobject-introspection
|
|
gtk-doc
|
|
docbook-xsl-nons
|
|
docbook_xml_dtd_43
|
|
vala
|
|
wayland-scanner
|
|
wayland-protocols
|
|
];
|
|
|
|
buildInputs = [
|
|
wayland
|
|
gtk4
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Ddocs=true"
|
|
"-Dexamples=true"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library to create panels and other desktop components for Wayland using the Layer Shell protocol and GTK4";
|
|
mainProgram = "gtk4-layer-demo";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ donovanglover ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|