gtk4-layer-shell: init at 1.0.1

This commit is contained in:
Donovan Glover 2023-08-10 18:09:34 -04:00
parent ce5e4a6ef2
commit 8cde5d2401
No known key found for this signature in database
GPG key ID: EA7408A77AE1BE65
2 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,65 @@
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, gtk-doc
, docbook-xsl-nons
, docbook_xml_dtd_43
, wayland-scanner
, wayland
, gtk4
, gobject-introspection
, vala
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gtk4-layer-shell";
version = "1.0.1";
outputs = [ "out" "dev" "devdoc" ];
outputBin = "devdoc";
src = fetchFromGitHub {
owner = "wmww";
repo = "gtk4-layer-shell";
rev = "v${finalAttrs.version}";
hash = "sha256-MG/YW4AhC2joUX93Y/pzV4s8TrCo5Z/I3hAT70jW8dw=";
};
strictDeps = true;
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
vala
wayland-scanner
];
buildInputs = [
wayland
gtk4
];
mesonFlags = [
"-Ddocs=true"
"-Dexamples=true"
];
meta = with lib; {
description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol and GTK4";
license = licenses.mit;
maintainers = with maintainers; [ donovanglover ];
platforms = platforms.linux;
};
})

View file

@ -21769,6 +21769,8 @@ with pkgs;
gtk-layer-shell = callPackage ../development/libraries/gtk-layer-shell { };
gtk4-layer-shell = callPackage ../development/libraries/gtk4-layer-shell { };
gts = callPackage ../development/libraries/gts { };
gumbo = callPackage ../development/libraries/gumbo { };