mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
xdg-desktop-portal-wlr: 0.1.0 -> 0.2.0
This commit is contained in:
parent
054e9b37fd
commit
46a0c019c0
1 changed files with 8 additions and 4 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue