gtk-layer-shell 0.7.0 -> 0.8.0 https://github.com/wmww/gtk-layer-shell/releases attrpath: gtk-layer-shell Checking auto update branch... No auto update branch exists Old version 0.7.0" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , meson , ninja , pkg-config , gtk-doc , docbook-xsl-nons , docbook_xml_dtd_43 , wayland , gtk3 , gobject-introspection , vala }: stdenv.mkDerivation rec { pname = "gtk-layer-shell"; version = "0.8.0"; outputs = [ "out" "dev" "devdoc" ]; outputBin = "devdoc"; # for demo src = fetchFromGitHub { owner = "wmww"; repo = "gtk-layer-shell"; rev = "v${version}"; sha256 = "sha256-Z7jPYLKgkwMNXu80aaZ2vNj57LbN+X2XqlTTq6l0wTE="; }; nativeBuildInputs = [ meson ninja pkg-config gobject-introspection gtk-doc docbook-xsl-nons docbook_xml_dtd_43 vala ]; buildInputs = [ wayland gtk3 ]; 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"; license = licenses.lgpl3Plus; maintainers = with maintainers; [ eonpatapon ]; platforms = platforms.unix; }; }