53 lines
946 B
Nix
53 lines
946 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, gtk-doc
|
|
, docbook-xsl-nons
|
|
, docbook_xml_dtd_43
|
|
, wayland
|
|
, gtk3
|
|
, gobject-introspection
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtk-layer-shell";
|
|
version = "0.5.2";
|
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wmww";
|
|
repo = "gtk-layer-shell";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-516N45q5EZTq5eLCqH/T/VV/AxgBsQhJ+yZdLOEeDUk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gobject-introspection
|
|
gtk-doc
|
|
docbook-xsl-nons
|
|
docbook_xml_dtd_43
|
|
];
|
|
|
|
buildInputs = [
|
|
wayland
|
|
gtk3
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Ddocs=true"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ eonpatapon ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|