mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
67 lines
1.1 KiB
Nix
67 lines
1.1 KiB
Nix
{ 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.2";
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
outputBin = "devdoc";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wmww";
|
|
repo = "gtk4-layer-shell";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-decjPkFkYy7kIjyozsB7BEmw33wzq1EQyIBrxO36984=";
|
|
};
|
|
|
|
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";
|
|
mainProgram = "gtk4-layer-demo";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ donovanglover ];
|
|
platforms = platforms.linux;
|
|
};
|
|
})
|