42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxml2, glib, pipewire, fuse }:
|
|
|
|
let
|
|
version = "1.0.2";
|
|
in stdenv.mkDerivation rec {
|
|
name = "xdg-desktop-portal-${version}";
|
|
|
|
outputs = [ "out" "installedTests" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flatpak";
|
|
repo = "xdg-desktop-portal";
|
|
rev = version;
|
|
sha256 = "1vl0150gz20x106di9yfa6l3zjw0nd2lr44rkq2147n2a254p79p";
|
|
};
|
|
|
|
patches = [
|
|
./respect-path-env-var.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig libxml2 ];
|
|
buildInputs = [ glib pipewire fuse ];
|
|
|
|
doCheck = true;
|
|
|
|
configureFlags = [
|
|
"--enable-installed-tests"
|
|
];
|
|
|
|
makeFlags = [
|
|
"installed_testdir=$(installedTests)/libexec/installed-tests/xdg-desktop-portal"
|
|
"installed_test_metadir=$(installedTests)/share/installed-tests/xdg-desktop-portal"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Desktop integration portals for sandboxed apps";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|