2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv
|
2019-12-28 15:08:46 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, meson
|
|
|
|
, ninja
|
2020-08-10 15:44:08 +01:00
|
|
|
, pkg-config
|
|
|
|
, gtk-doc
|
|
|
|
, docbook-xsl-nons
|
|
|
|
, docbook_xml_dtd_43
|
2019-12-28 15:08:46 +00:00
|
|
|
, wayland
|
|
|
|
, gtk3
|
|
|
|
, gobject-introspection
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "gtk-layer-shell";
|
2021-03-04 16:46:32 +00:00
|
|
|
version = "0.6.0";
|
2019-12-28 15:08:46 +00:00
|
|
|
|
2020-08-10 15:44:08 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
|
|
|
|
2019-12-28 15:08:46 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wmww";
|
|
|
|
repo = "gtk-layer-shell";
|
|
|
|
rev = "v${version}";
|
2021-03-04 16:46:32 +00:00
|
|
|
sha256 = "sha256-jLWXBoYcVoUSzw4OIYVM5iPvsmpy+Wg5TbDpo8cll80=";
|
2019-12-28 15:08:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2020-08-10 15:44:08 +01:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
gobject-introspection
|
|
|
|
gtk-doc
|
|
|
|
docbook-xsl-nons
|
|
|
|
docbook_xml_dtd_43
|
2019-12-28 15:08:46 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2020-08-10 15:44:08 +01:00
|
|
|
wayland
|
|
|
|
gtk3
|
2019-12-28 15:08:46 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
mesonFlags = [
|
2020-08-10 15:44:08 +01:00
|
|
|
"-Ddocs=true"
|
2019-12-28 15:08:46 +00:00
|
|
|
];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-12-28 15:08:46 +00:00
|
|
|
description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol";
|
2020-08-10 15:36:50 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
2019-12-28 15:08:46 +00:00
|
|
|
maintainers = with maintainers; [ eonpatapon ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|