about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRĂ©mi NICOLE <minijackson@users.noreply.github.com>2020-06-05 14:51:34 +0200
committerGitHub <noreply@github.com>2020-06-05 12:51:34 +0000
commitf16f0c2facb0ecab321d7f4f33e9ccf94c5f3c1a (patch)
tree4bc62abe8602ea856373d0f0a0a0e3458840af05 /pkgs
parentb00463d40641ea48a8e1dcd954bb3c9511e2e82e (diff)
downloadnixlib-f16f0c2facb0ecab321d7f4f33e9ccf94c5f3c1a.tar
nixlib-f16f0c2facb0ecab321d7f4f33e9ccf94c5f3c1a.tar.gz
nixlib-f16f0c2facb0ecab321d7f4f33e9ccf94c5f3c1a.tar.bz2
nixlib-f16f0c2facb0ecab321d7f4f33e9ccf94c5f3c1a.tar.lz
nixlib-f16f0c2facb0ecab321d7f4f33e9ccf94c5f3c1a.tar.xz
nixlib-f16f0c2facb0ecab321d7f4f33e9ccf94c5f3c1a.tar.zst
nixlib-f16f0c2facb0ecab321d7f4f33e9ccf94c5f3c1a.zip
xdg-desktop-portal-wlr: init at 0.1.0 (#83485)
* xdg-desktop-portal-wlr: init at 2020-03-13

* xdg-desktop-portal-wlr: 2020-03-13 -> 0.1.0

Co-authored-by: zimbatm <zimbatm@zimbatm.com>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/xdg-desktop-portal-wlr/default.nix26
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/xdg-desktop-portal-wlr/default.nix b/pkgs/development/libraries/xdg-desktop-portal-wlr/default.nix
new file mode 100644
index 000000000000..c6faa4fc017a
--- /dev/null
+++ b/pkgs/development/libraries/xdg-desktop-portal-wlr/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub
+, meson, ninja, pkgconfig, wayland-protocols
+, pipewire, wayland, elogind, systemd, libdrm }:
+
+stdenv.mkDerivation rec {
+  pname = "xdg-desktop-portal-wlr";
+  version = "0.1.0";
+
+  src = fetchFromGitHub {
+    owner = "emersion";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "12k92h9dmn1fyn8nzxk69cyv0gnb7g9gj7a66mw5dcl5zqnl07nc";
+  };
+
+  nativeBuildInputs = [ meson ninja pkgconfig wayland-protocols ];
+  buildInputs = [ pipewire wayland elogind systemd libdrm ];
+
+  meta = with stdenv.lib; {
+    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;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 04d090040832..2f4fe9578a01 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -23030,6 +23030,8 @@ in
 
   xdg-desktop-portal-gtk = callPackage ../development/libraries/xdg-desktop-portal-gtk { };
 
+  xdg-desktop-portal-wlr = callPackage ../development/libraries/xdg-desktop-portal-wlr { };
+
   xdg-user-dirs = callPackage ../tools/X11/xdg-user-dirs { };
 
   xdg_utils = callPackage ../tools/X11/xdg-utils {