xdg-desktop-portal-wlr: 0.1.0 -> 0.2.0

This commit is contained in:
Andreas Stührk 2021-03-05 21:07:13 +01:00
parent 054e9b37fd
commit 46a0c019c0
1 changed files with 8 additions and 4 deletions

View File

@ -1,20 +1,24 @@
{ lib, stdenv, fetchFromGitHub { lib, stdenv, fetchFromGitHub
, meson, ninja, pkg-config, wayland-protocols , meson, ninja, pkg-config, wayland-protocols
, pipewire, wayland, elogind, systemd, libdrm }: , pipewire, wayland, systemd, libdrm }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "xdg-desktop-portal-wlr"; pname = "xdg-desktop-portal-wlr";
version = "0.1.0"; version = "0.2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "emersion"; owner = "emersion";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "12k92h9dmn1fyn8nzxk69cyv0gnb7g9gj7a66mw5dcl5zqnl07nc"; sha256 = "1vjz0y3ib1xw25z8hl679l2p6g4zcg7b8fcd502bhmnqgwgdcsfx";
}; };
nativeBuildInputs = [ meson ninja pkg-config wayland-protocols ]; nativeBuildInputs = [ meson ninja pkg-config wayland-protocols ];
buildInputs = [ pipewire wayland elogind systemd libdrm ]; buildInputs = [ pipewire wayland systemd libdrm ];
mesonFlags = [
"-Dsd-bus-provider=libsystemd"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/emersion/xdg-desktop-portal-wlr"; homepage = "https://github.com/emersion/xdg-desktop-portal-wlr";