nixpkgs/pkgs/development/libraries/gtk-layer-shell/default.nix

53 lines
946 B
Nix
Raw Normal View History

{ lib, stdenv
2019-12-28 15:08:46 +00:00
, fetchFromGitHub
, meson
, ninja
, 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
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 = [
meson
ninja
pkg-config
gobject-introspection
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
2019-12-28 15:08:46 +00:00
];
buildInputs = [
wayland
gtk3
2019-12-28 15:08:46 +00:00
];
mesonFlags = [
"-Ddocs=true"
2019-12-28 15:08:46 +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";
license = licenses.lgpl3Plus;
2019-12-28 15:08:46 +00:00
maintainers = with maintainers; [ eonpatapon ];
platforms = platforms.unix;
};
}