mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
46 lines
869 B
Nix
46 lines
869 B
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, kwindowsystem
|
|
, libfm-qt
|
|
, lxqt-qtplugin
|
|
, qtx11extras
|
|
, gitUpdater
|
|
, extraQtStyles ? []
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "xdg-desktop-portal-lxqt";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxqt";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "oEcFRBIYb/ZJQo9W+yIiq3l3eU1GqUzfDdF/Rvq5SKs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
kwindowsystem
|
|
libfm-qt
|
|
lxqt-qtplugin
|
|
qtx11extras
|
|
]
|
|
++ extraQtStyles;
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/lxqt/xdg-desktop-portal-lxqt";
|
|
description = "Backend implementation for xdg-desktop-portal that is using Qt/KF5/libfm-qt";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|