nixpkgs/pkgs/development/libraries/libportal/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

86 lines
1.9 KiB
Nix
Raw Normal View History

2021-05-14 13:50:43 +00:00
{ stdenv
, lib
2020-02-07 05:51:27 +00:00
, fetchFromGitHub
2022-08-04 20:55:00 +00:00
, fetchpatch
2020-02-07 05:51:27 +00:00
, meson
, ninja
, pkg-config
, gobject-introspection
, vala
, gi-docgen
2020-02-07 05:51:27 +00:00
, glib
, gtk3
, gtk4
, libsForQt5
, variant ? null
2020-02-07 05:51:27 +00:00
}:
assert variant == null || variant == "gtk3" || variant == "gtk4" || variant == "qt5";
2020-02-07 05:51:27 +00:00
stdenv.mkDerivation rec {
pname = "libportal" + lib.optionalString (variant != null) "-${variant}";
2022-03-22 10:05:58 +00:00
version = "0.6";
2020-02-07 05:51:27 +00:00
outputs = [ "out" "dev" "devdoc" ];
src = fetchFromGitHub {
owner = "flatpak";
repo = "libportal";
2020-02-07 05:51:27 +00:00
rev = version;
2022-03-22 10:05:58 +00:00
sha256 = "sha256-wDDE43UC6FBgPYLS+WWExeheURCH/3fCKu5oJg7GM+A=";
2020-02-07 05:51:27 +00:00
};
2022-08-18 10:12:21 +00:00
# TODO: remove on 0.7
2022-08-04 20:55:00 +00:00
patches = [
2022-08-18 10:12:21 +00:00
# https://github.com/flatpak/libportal/pull/107
2022-08-04 20:55:00 +00:00
(fetchpatch {
2022-08-18 10:12:21 +00:00
name = "check-presence-of-sys-vfs-h.patch";
url = "https://github.com/flatpak/libportal/commit/e91a5d2ceb494ca0dd67295736e671b0142c7540.patch";
sha256 = "sha256-uFyhlU2fJgW4z0I31fABdc+pimLFYkqM4lggSIFs1tw=";
2022-08-04 20:55:00 +00:00
})
];
2022-08-06 22:48:42 +00:00
depsBuildBuild = [
pkg-config
];
2020-02-07 05:51:27 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
gi-docgen
] ++ lib.optionals (variant != "qt5") [
gobject-introspection
vala
2020-02-07 05:51:27 +00:00
];
propagatedBuildInputs = [
glib
] ++ lib.optionals (variant == "gtk3") [
gtk3
] ++ lib.optionals (variant == "gtk4") [
gtk4
] ++ lib.optionals (variant == "qt5") [
libsForQt5.qtbase
];
mesonFlags = [
"-Dbackends=${lib.optionalString (variant != null) variant}"
"-Dvapi=${if variant != "qt5" then "true" else "false"}"
"-Dintrospection=${if variant != "qt5" then "true" else "false"}"
2020-02-07 05:51:27 +00:00
];
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
meta = with lib; {
2020-02-07 05:51:27 +00:00
description = "Flatpak portal library";
homepage = "https://github.com/flatpak/libportal";
license = licenses.lgpl3Plus;
2020-02-07 05:51:27 +00:00
maintainers = with maintainers; [ jtojnar ];
2022-08-04 20:55:00 +00:00
platforms = platforms.unix;
2020-02-07 05:51:27 +00:00
};
}