2021-05-04 21:07:42 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
2021-02-05 17:12:51 +00:00
|
|
|
, meson, ninja, pkg-config, wayland-protocols
|
2021-06-28 23:13:55 +00:00
|
|
|
, pipewire, wayland, systemd, libdrm, inih, scdoc, grim, slurp }:
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xdg-desktop-portal-wlr";
|
2022-01-19 23:45:15 +00:00
|
|
|
version = "0.5.0";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "emersion";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-01-19 23:45:15 +00:00
|
|
|
sha256 = "sha256-weePlNcLmZ3R0IDQ95p0wQvsKTYp+sVlTENJtF8Z78Y=";
|
2020-06-18 07:06:33 +00:00
|
|
|
};
|
|
|
|
|
2021-05-04 21:07:42 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkg-config wayland-protocols makeWrapper ];
|
2021-06-28 23:13:55 +00:00
|
|
|
buildInputs = [ pipewire wayland systemd libdrm inih scdoc ];
|
2021-03-09 03:18:52 +00:00
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Dsd-bus-provider=libsystemd"
|
|
|
|
];
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-05-04 21:07:42 +00:00
|
|
|
postInstall = ''
|
2021-05-20 23:08:51 +00:00
|
|
|
wrapProgram $out/libexec/xdg-desktop-portal-wlr --prefix PATH ":" ${lib.makeBinPath [ grim slurp ]}
|
2021-05-04 21:07:42 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-06-18 07:06:33 +00:00
|
|
|
homepage = "https://github.com/emersion/xdg-desktop-portal-wlr";
|
|
|
|
description = "xdg-desktop-portal backend for wlroots";
|
|
|
|
maintainers = with maintainers; [ minijackson ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|