mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 12:34:15 +00:00
gtk4-layer-shell: init at 1.0.1
This commit is contained in:
parent
ce5e4a6ef2
commit
8cde5d2401
65
pkgs/development/libraries/gtk4-layer-shell/default.nix
Normal file
65
pkgs/development/libraries/gtk4-layer-shell/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user