Merge pull request #248424 from donovanglover/gtk4-layer-shell

gtk4-layer-shell: init at 1.0.1
This commit is contained in:
Nick Cao
2023-08-13 00:26:02 -06:00
committed by GitHub
2 changed files with 67 additions and 0 deletions
@@ -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;
};
})
+2
View File
@@ -21811,6 +21811,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 { };