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

25 lines
706 B
Nix
Raw Normal View History

2017-12-31 03:01:07 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libxml2, xdg-desktop-portal, gtk3, glib }:
let
2018-09-06 09:40:59 +00:00
version = "1.0.2";
2017-12-31 03:01:07 +00:00
in stdenv.mkDerivation rec {
name = "xdg-desktop-portal-gtk-${version}";
src = fetchFromGitHub {
owner = "flatpak";
repo = "xdg-desktop-portal-gtk";
rev = version;
2018-09-06 09:40:59 +00:00
sha256 = "06dzh3vzq5nw3r89kb1qi3r2z8wjh9zmzc0hfnva4vnx7mwgm7ax";
2017-12-31 03:01:07 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig libxml2 xdg-desktop-portal ];
buildInputs = [ glib gtk3 ];
meta = with stdenv.lib; {
description = "Desktop integration portals for sandboxed apps";
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.linux;
license = licenses.lgpl21;
};
}