3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #115209 from Trundle/xdg-desktop-portal-0.2.0

xdg-desktop-portal-wlr: 0.1.0 -> 0.2.0
This commit is contained in:
Sandro 2021-03-06 00:11:08 +01:00 committed by GitHub
commit 50d85696f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,24 @@
{ lib, stdenv, fetchFromGitHub
, meson, ninja, pkg-config, wayland-protocols
, pipewire, wayland, elogind, systemd, libdrm }:
, pipewire, wayland, systemd, libdrm }:
stdenv.mkDerivation rec {
pname = "xdg-desktop-portal-wlr";
version = "0.1.0";
version = "0.2.0";
src = fetchFromGitHub {
owner = "emersion";
repo = pname;
rev = "v${version}";
sha256 = "12k92h9dmn1fyn8nzxk69cyv0gnb7g9gj7a66mw5dcl5zqnl07nc";
sha256 = "1vjz0y3ib1xw25z8hl679l2p6g4zcg7b8fcd502bhmnqgwgdcsfx";
};
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; {
homepage = "https://github.com/emersion/xdg-desktop-portal-wlr";