Merge pull request #46636 from jtojnar/flatpak-1.0.2
flatpak: 0.99.3 → 1.0.2
This commit is contained in:
commit
7771df135f
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
|||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-x"
|
"--with-x"
|
||||||
"--disable-static"
|
"--disable-static"
|
||||||
"--enable-remote-desktop"
|
# "--enable-remote-desktop"
|
||||||
"--enable-shape"
|
"--enable-shape"
|
||||||
"--enable-sm"
|
"--enable-sm"
|
||||||
"--enable-startup-notification"
|
"--enable-startup-notification"
|
||||||
|
@ -1,27 +1,32 @@
|
|||||||
{ stdenv, fetchurl, autoreconfHook, docbook_xml_dtd_412, docbook_xml_dtd_42, docbook_xml_dtd_43, docbook_xsl, which, libxml2
|
{ stdenv, fetchurl, autoreconfHook, docbook_xml_dtd_412, docbook_xml_dtd_42, docbook_xml_dtd_43, docbook_xsl, which, libxml2
|
||||||
, gobjectIntrospection, gtk-doc, intltool, libxslt, pkgconfig, xmlto, appstream-glib, substituteAll, glibcLocales, yacc
|
, gobjectIntrospection, gtk-doc, intltool, libxslt, pkgconfig, xmlto, appstream-glib, substituteAll, glibcLocales, yacc, xdg-dbus-proxy, p11-kit
|
||||||
, bubblewrap, bzip2, dbus, glib, gpgme, json-glib, libarchive, libcap, libseccomp, coreutils, python2, hicolor-icon-theme
|
, bubblewrap, bzip2, dbus, glib, gpgme, json-glib, libarchive, libcap, libseccomp, coreutils, python2, hicolor-icon-theme
|
||||||
, libsoup, lzma, ostree, polkit, python3, systemd, xorg, valgrind, glib-networking, makeWrapper, gnome3 }:
|
, libsoup, lzma, ostree, polkit, python3, systemd, xorg, valgrind, glib-networking, makeWrapper, gnome3 }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.99.3";
|
version = "1.0.2";
|
||||||
desktop_schemas = gnome3.gsettings-desktop-schemas;
|
desktop_schemas = gnome3.gsettings-desktop-schemas;
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "flatpak-${version}";
|
name = "flatpak-${version}";
|
||||||
|
|
||||||
|
# TODO: split out lib once we figure out what to do with triggerdir
|
||||||
outputs = [ "out" "man" "doc" "installedTests" ];
|
outputs = [ "out" "man" "doc" "installedTests" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/flatpak/flatpak/releases/download/${version}/${name}.tar.xz";
|
url = "https://github.com/flatpak/flatpak/releases/download/${version}/${name}.tar.xz";
|
||||||
sha256 = "0wd6ix1qyz8wmjkfrmr6j99gwywqs7ak1ilsn1ljp72g2z449ayk";
|
sha256 = "0d0nnymb4p3njc24j0p6f74x7cdfi7jac714gxzzz5y5lrd651gn";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(substituteAll {
|
(substituteAll {
|
||||||
src = ./fix-test-paths.patch;
|
src = ./fix-test-paths.patch;
|
||||||
inherit coreutils python2 glibcLocales;
|
inherit coreutils glibcLocales;
|
||||||
hicolorIconTheme = hicolor-icon-theme;
|
hicolorIconTheme = hicolor-icon-theme;
|
||||||
})
|
})
|
||||||
|
(substituteAll {
|
||||||
|
src = ./fix-paths.patch;
|
||||||
|
p11 = p11-kit;
|
||||||
|
})
|
||||||
# patch taken from gtk_doc
|
# patch taken from gtk_doc
|
||||||
./respect-xml-catalog-files-var.patch
|
./respect-xml-catalog-files-var.patch
|
||||||
./use-flatpak-from-path.patch
|
./use-flatpak-from-path.patch
|
||||||
@ -30,7 +35,7 @@ in stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook libxml2 docbook_xml_dtd_412 docbook_xml_dtd_42 docbook_xml_dtd_43 docbook_xsl which gobjectIntrospection
|
autoreconfHook libxml2 docbook_xml_dtd_412 docbook_xml_dtd_42 docbook_xml_dtd_43 docbook_xsl which gobjectIntrospection
|
||||||
gtk-doc intltool libxslt pkgconfig xmlto appstream-glib yacc makeWrapper
|
gtk-doc intltool libxslt pkgconfig xmlto appstream-glib yacc makeWrapper
|
||||||
] ++ stdenv.lib.optionals doCheck checkInputs;
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
bubblewrap bzip2 dbus glib gpgme json-glib libarchive libcap libseccomp
|
bubblewrap bzip2 dbus glib gpgme json-glib libarchive libcap libseccomp
|
||||||
@ -45,6 +50,7 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-system-bubblewrap=${bubblewrap}/bin/bwrap"
|
"--with-system-bubblewrap=${bubblewrap}/bin/bwrap"
|
||||||
|
"--with-system-dbus-proxy=${xdg-dbus-proxy}/bin/xdg-dbus-proxy"
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
"--enable-installed-tests"
|
"--enable-installed-tests"
|
||||||
];
|
];
|
||||||
|
20
pkgs/development/libraries/flatpak/fix-paths.patch
Normal file
20
pkgs/development/libraries/flatpak/fix-paths.patch
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
--- a/session-helper/flatpak-session-helper.c
|
||||||
|
+++ b/session-helper/flatpak-session-helper.c
|
||||||
|
@@ -624,7 +624,7 @@
|
||||||
|
g_auto(GStrv) stdout_lines = NULL;
|
||||||
|
int i;
|
||||||
|
char *p11_argv[] = {
|
||||||
|
- "p11-kit", "server",
|
||||||
|
+ "@p11@/bin/p11-kit", "server",
|
||||||
|
/* We explicitly request --sh here, because we then fail on earlier versions that doesn't support
|
||||||
|
* this flag. This is good, because those earlier versions did not properly daemonize and caused
|
||||||
|
* the spawn_sync to hang forever, waiting for the pipe to close.
|
||||||
|
@@ -770,7 +770,7 @@
|
||||||
|
exit (1);
|
||||||
|
}
|
||||||
|
|
||||||
|
- if (g_find_program_in_path ("p11-kit"))
|
||||||
|
+ if (TRUE)
|
||||||
|
start_p11_kit_server (flatpak_dir);
|
||||||
|
else
|
||||||
|
g_debug ("p11-kit not found");
|
@ -1,6 +1,6 @@
|
|||||||
--- a/tests/libtest.sh
|
--- a/tests/libtest.sh
|
||||||
+++ b/tests/libtest.sh
|
+++ b/tests/libtest.sh
|
||||||
@@ -315,7 +315,7 @@
|
@@ -296,7 +296,7 @@
|
||||||
# running installed-tests: assume we know what we're doing
|
# running installed-tests: assume we know what we're doing
|
||||||
:
|
:
|
||||||
elif ! "$FLATPAK_BWRAP" --unshare-ipc --unshare-net --unshare-pid \
|
elif ! "$FLATPAK_BWRAP" --unshare-ipc --unshare-net --unshare-pid \
|
||||||
@ -9,16 +9,7 @@
|
|||||||
sed -e 's/^/# /' < bwrap-result
|
sed -e 's/^/# /' < bwrap-result
|
||||||
echo "1..0 # SKIP Cannot run bwrap"
|
echo "1..0 # SKIP Cannot run bwrap"
|
||||||
exit 0
|
exit 0
|
||||||
@@ -323,7 +323,7 @@
|
@@ -309,12 +309,12 @@
|
||||||
}
|
|
||||||
|
|
||||||
skip_without_python2 () {
|
|
||||||
- if ! test -f /usr/bin/python2 || ! /usr/bin/python2 -c "import sys; sys.exit(0 if sys.version_info >= (2, 7) else 1)" ; then
|
|
||||||
+ if ! test -f @python2@/bin/python2 || ! @python2@/bin/python2 -c "import sys; sys.exit(0 if sys.version_info >= (2, 7) else 1)" ; then
|
|
||||||
echo "1..0 # SKIP this test requires /usr/bin/python2 (2.7) support"
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
@@ -335,12 +335,12 @@
|
|
||||||
export DBUS_SESSION_BUS_ADDRESS="$(cat dbus-session-bus-address)"
|
export DBUS_SESSION_BUS_ADDRESS="$(cat dbus-session-bus-address)"
|
||||||
DBUS_SESSION_BUS_PID="$(cat dbus-session-bus-pid)"
|
DBUS_SESSION_BUS_PID="$(cat dbus-session-bus-pid)"
|
||||||
|
|
||||||
@ -43,7 +34,7 @@
|
|||||||
mkdir -p ${DIR}/usr/bin
|
mkdir -p ${DIR}/usr/bin
|
||||||
mkdir -p ${DIR}/usr/lib
|
mkdir -p ${DIR}/usr/lib
|
||||||
ln -s ../lib ${DIR}/usr/lib64
|
ln -s ../lib ${DIR}/usr/lib64
|
||||||
@@ -35,73 +36,27 @@
|
@@ -35,48 +36,27 @@
|
||||||
else
|
else
|
||||||
cp `which ldconfig` ${DIR}/usr/bin
|
cp `which ldconfig` ${DIR}/usr/bin
|
||||||
fi
|
fi
|
||||||
@ -73,31 +64,6 @@
|
|||||||
for i in $@; do
|
for i in $@; do
|
||||||
- I=`which $i`
|
- I=`which $i`
|
||||||
- add_bin $I
|
- add_bin $I
|
||||||
- if test $i == python2; then
|
|
||||||
- mkdir -p ${DIR}/usr/lib/python2.7/lib-dynload
|
|
||||||
- # This is a hardcoded minimal set of modules we need in the current tests.
|
|
||||||
- # Pretty hacky stuff. Add modules as needed.
|
|
||||||
- PYDIR=/usr/lib/python2.7
|
|
||||||
- if test -d /usr/lib64/python2.7; then PYDIR=/usr/lib64/python2.7; fi
|
|
||||||
- for py in site os stat posixpath genericpath warnings \
|
|
||||||
- linecache types UserDict abc _abcoll \
|
|
||||||
- _weakrefset copy_reg traceback sysconfig \
|
|
||||||
- re sre_compile sre_parse sre_constants \
|
|
||||||
- _sysconfigdata ; do
|
|
||||||
- cp ${PYDIR}/$py.py ${DIR}/usr/lib/python2.7
|
|
||||||
- done
|
|
||||||
- # These might not exist, depending how Python was configured; and the
|
|
||||||
- # part after ${so} might be "module" or ".x86_64-linux-gnu" or
|
|
||||||
- # something else
|
|
||||||
- for so in _locale strop ; do
|
|
||||||
- cp ${PYDIR}/lib-dynload/${so}*.so ${DIR}/usr/lib/python2.7/lib-dynload || :
|
|
||||||
- done
|
|
||||||
- for plat in $( cd ${PYDIR} && echo plat-* ); do
|
|
||||||
- test -e ${PYDIR}/${plat} || continue
|
|
||||||
- mkdir -p ${DIR}/usr/lib/python2.7/${plat}
|
|
||||||
- cp ${PYDIR}/${plat}/*.py ${DIR}/usr/lib/python2.7/${plat}/
|
|
||||||
- done
|
|
||||||
- fi
|
|
||||||
-done
|
-done
|
||||||
-for i in `cat $BINS`; do
|
-for i in `cat $BINS`; do
|
||||||
- echo Adding binary $i 1>&2
|
- echo Adding binary $i 1>&2
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- a/common/flatpak-dir.c
|
--- a/common/flatpak-dir.c
|
||||||
+++ b/common/flatpak-dir.c
|
+++ b/common/flatpak-dir.c
|
||||||
@@ -5467,7 +5467,7 @@ export_desktop_file (const char *app,
|
@@ -5758,7 +5758,7 @@ export_desktop_file (const char *app,
|
||||||
|
|
||||||
new_exec = g_string_new ("");
|
new_exec = g_string_new ("");
|
||||||
g_string_append_printf (new_exec,
|
g_string_append_printf (new_exec,
|
||||||
@ -9,7 +9,7 @@
|
|||||||
escaped_branch,
|
escaped_branch,
|
||||||
escaped_arch);
|
escaped_arch);
|
||||||
|
|
||||||
@@ -6644,8 +6644,8 @@ flatpak_dir_deploy (FlatpakDir *self,
|
@@ -6935,8 +6935,8 @@ flatpak_dir_deploy (FlatpakDir *self,
|
||||||
error))
|
error))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, doxygen, graphviz, valgrind
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, doxygen, graphviz, valgrind
|
||||||
, glib, dbus, gst_all_1, v4l_utils, alsaLib, ffmpeg, libjack2, udev, libva, xorg
|
, glib, dbus, gst_all_1, libv4l, alsaLib, ffmpeg, libjack2, udev, libva, xorg
|
||||||
, sbc, SDL2, makeFontsConf, freefont_ttf
|
, sbc, SDL2, makeFontsConf, freefont_ttf
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.1.9";
|
version = "0.2.3";
|
||||||
|
|
||||||
fontsConf = makeFontsConf {
|
fontsConf = makeFontsConf {
|
||||||
fontDirectories = [ freefont_ttf ];
|
fontDirectories = [ freefont_ttf ];
|
||||||
@ -16,22 +16,22 @@ in stdenv.mkDerivation rec {
|
|||||||
owner = "PipeWire";
|
owner = "PipeWire";
|
||||||
repo = "pipewire";
|
repo = "pipewire";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0r9mgwbggnnijhdz49fnv0qdka364xn1h8yml2jakyqpfrm3i2nm";
|
sha256 = "1y04brfi5bv4y0hdyqzrcbayr674njf6a5hiwjfv2yi6lazkqv1k";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" "doc" ];
|
outputs = [ "out" "lib" "dev" "doc" ];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
meson ninja pkgconfig doxygen graphviz valgrind
|
meson ninja pkgconfig doxygen graphviz valgrind
|
||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib dbus gst_all_1.gst-plugins-base gst_all_1.gstreamer v4l_utils
|
glib dbus gst_all_1.gst-plugins-base gst_all_1.gstreamer libv4l
|
||||||
alsaLib ffmpeg libjack2 udev libva xorg.libX11 sbc SDL2
|
alsaLib ffmpeg libjack2 udev libva xorg.libX11 sbc SDL2
|
||||||
];
|
];
|
||||||
|
|
||||||
mesonFlags = [
|
mesonFlags = [
|
||||||
"-Denable_docs=true"
|
"-Ddocs=true"
|
||||||
"-Denable_gstreamer=true"
|
"-Dgstreamer=true"
|
||||||
];
|
];
|
||||||
|
|
||||||
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
|
PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user";
|
||||||
|
24
pkgs/development/libraries/xdg-dbus-proxy/default.nix
Normal file
24
pkgs/development/libraries/xdg-dbus-proxy/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, glib }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.1.0";
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "xdg-dbus-proxy-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/flatpak/xdg-dbus-proxy/releases/download/${version}/${name}.tar.xz";
|
||||||
|
sha256 = "055wli36lvdannp6qqwbvd78353n61wn9kp8y3dchh39wq7x7vwy";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ glib ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "DBus proxy for Flatpak and others";
|
||||||
|
homepage = https://flatpak.org/;
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
|
maintainers = with maintainers; [ jtojnar ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxml2, xdg-desktop-portal, gtk3, glib }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxml2, xdg-desktop-portal, gtk3, glib }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.99";
|
version = "1.0.2";
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "xdg-desktop-portal-gtk-${version}";
|
name = "xdg-desktop-portal-gtk-${version}";
|
||||||
|
|
||||||
@ -9,7 +9,7 @@ in stdenv.mkDerivation rec {
|
|||||||
owner = "flatpak";
|
owner = "flatpak";
|
||||||
repo = "xdg-desktop-portal-gtk";
|
repo = "xdg-desktop-portal-gtk";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0jnmrl55gpvz06hy0832kcby4y84f0a1hiali6qy1lcmyqhm3v59";
|
sha256 = "06dzh3vzq5nw3r89kb1qi3r2z8wjh9zmzc0hfnva4vnx7mwgm7ax";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig libxml2 xdg-desktop-portal ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig libxml2 xdg-desktop-portal ];
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxml2, glib, pipewire, fuse }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxml2, glib, pipewire, fuse }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.99";
|
version = "1.0.2";
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "xdg-desktop-portal-${version}";
|
name = "xdg-desktop-portal-${version}";
|
||||||
|
|
||||||
@ -11,7 +11,7 @@ in stdenv.mkDerivation rec {
|
|||||||
owner = "flatpak";
|
owner = "flatpak";
|
||||||
repo = "xdg-desktop-portal";
|
repo = "xdg-desktop-portal";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "05garhdxylphrizyaqnz4sfpp28fd00v877q7cf1gyhpk1sr8i83";
|
sha256 = "1vl0150gz20x106di9yfa6l3zjw0nd2lr44rkq2147n2a254p79p";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
, libcap
|
, libcap
|
||||||
, libdwarf
|
, libdwarf
|
||||||
, libsoup
|
, libsoup
|
||||||
|
, libyaml
|
||||||
, ostree
|
, ostree
|
||||||
, patch
|
, patch
|
||||||
, rpm
|
, rpm
|
||||||
@ -72,6 +73,7 @@ in stdenv.mkDerivation rec {
|
|||||||
libdwarf
|
libdwarf
|
||||||
libsoup
|
libsoup
|
||||||
libxml2
|
libxml2
|
||||||
|
libyaml
|
||||||
ostree
|
ostree
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "2018.6";
|
version = "2018.8";
|
||||||
|
|
||||||
libglnx-src = fetchFromGitHub {
|
libglnx-src = fetchFromGitHub {
|
||||||
owner = "GNOME";
|
owner = "GNOME";
|
||||||
repo = "libglnx";
|
repo = "libglnx";
|
||||||
rev = "e1a78cf2f5351d5394ccfb79f3f5a7b4917f73f3";
|
rev = "470af8763ff7b99bec950a6ae0a957c1dcfc8edd";
|
||||||
sha256 = "10kzyjbrmr98i65hlz8jc1v5bijyqwwfp6qqjbd5g3y0n520iaxc";
|
sha256 = "1fwik38i6w3r6pn4qkizradcqp1m83n7ljh9jg0y3p3kvrbfxh15";
|
||||||
};
|
};
|
||||||
|
|
||||||
bsdiff-src = fetchFromGitHub {
|
bsdiff-src = fetchFromGitHub {
|
||||||
@ -28,7 +28,7 @@ in stdenv.mkDerivation {
|
|||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
owner = "ostreedev";
|
owner = "ostreedev";
|
||||||
repo = "ostree";
|
repo = "ostree";
|
||||||
sha256 = "0kk04pznk6m6fqdz609m2zcnkalcw9q8fsx8wm42k6dhf6cw7l3g";
|
sha256 = "0i7b7hvlv8m44k39fr5389wskf810vda8s7ivy2whj1nan5951yx";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -62,6 +62,8 @@ in stdenv.mkDerivation {
|
|||||||
env NOCONFIGURE=1 ./autogen.sh
|
env NOCONFIGURE=1 ./autogen.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-systemdsystemunitdir=$(out)/lib/systemd/system"
|
"--with-systemdsystemunitdir=$(out)/lib/systemd/system"
|
||||||
"--with-systemdsystemgeneratordir=$(out)/lib/systemd/system-generators"
|
"--with-systemdsystemgeneratordir=$(out)/lib/systemd/system-generators"
|
||||||
|
@ -19461,6 +19461,8 @@ with pkgs;
|
|||||||
|
|
||||||
xdaliclock = callPackage ../tools/misc/xdaliclock {};
|
xdaliclock = callPackage ../tools/misc/xdaliclock {};
|
||||||
|
|
||||||
|
xdg-dbus-proxy = callPackage ../development/libraries/xdg-dbus-proxy { };
|
||||||
|
|
||||||
xdg-desktop-portal = callPackage ../development/libraries/xdg-desktop-portal { };
|
xdg-desktop-portal = callPackage ../development/libraries/xdg-desktop-portal { };
|
||||||
|
|
||||||
xdg-desktop-portal-gtk = callPackage ../development/libraries/xdg-desktop-portal-gtk { };
|
xdg-desktop-portal-gtk = callPackage ../development/libraries/xdg-desktop-portal-gtk { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user