nixpkgs/pkgs/development/libraries/xdg-desktop-portal-gtk/default.nix

24 lines
752 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxml2, xdg-desktop-portal, gtk3, glib, wrapGAppsHook, gsettings-desktop-schemas }:
2017-12-31 04:01:07 +01:00
stdenv.mkDerivation rec {
pname = "xdg-desktop-portal-gtk";
version = "1.2.0";
2017-12-31 04:01:07 +01:00
src = fetchFromGitHub {
owner = "flatpak";
repo = pname;
2017-12-31 04:01:07 +01:00
rev = version;
sha256 = "1vgnsahljzrjcdjzv1dxhp2rf709pnf8595an82llnylwa8rdp1j";
2017-12-31 04:01:07 +01:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig libxml2 xdg-desktop-portal wrapGAppsHook ];
buildInputs = [ glib gtk3 gsettings-desktop-schemas ];
2017-12-31 04:01:07 +01:00
meta = with stdenv.lib; {
description = "Desktop integration portals for sandboxed apps";
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
license = licenses.lgpl21;
};
}