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

53 lines
949 B
Nix
Raw Normal View History

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