6b1eaf9b5e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/xdg-desktop-portal/versions.
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxml2, glib, pipewire, fuse }:
|
|
|
|
let
|
|
version = "0.99";
|
|
in stdenv.mkDerivation rec {
|
|
name = "xdg-desktop-portal-${version}";
|
|
|
|
outputs = [ "out" "installedTests" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flatpak";
|
|
repo = "xdg-desktop-portal";
|
|
rev = version;
|
|
sha256 = "05garhdxylphrizyaqnz4sfpp28fd00v877q7cf1gyhpk1sr8i83";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|