nixpkgs/pkgs/desktops/lxqt/lxqt-policykit/default.nix

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

63 lines
1007 B
Nix
Raw Normal View History

{ lib
2024-04-18 17:21:41 +00:00
, stdenv
, fetchFromGitHub
, cmake
, kwindowsystem
, liblxqt
, libqtxdg
2024-04-18 17:21:41 +00:00
, lxqt-build-tools
, pcre
2024-04-18 17:21:41 +00:00
, pkg-config
, polkit
, polkit-qt-1
, qtbase
, qtsvg
, qttools
, qtwayland
, wrapQtAppsHook
, gitUpdater
2017-02-25 15:44:29 +00:00
}:
2016-10-03 22:10:07 +00:00
2024-04-18 17:21:41 +00:00
stdenv.mkDerivation rec {
2016-10-03 22:10:07 +00:00
pname = "lxqt-policykit";
2024-11-07 02:22:15 +00:00
version = "2.1.0";
2016-10-03 22:10:07 +00:00
2017-11-02 01:57:37 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:10:07 +00:00
repo = pname;
rev = version;
2024-11-07 02:22:15 +00:00
hash = "sha256-wj9i09F9If5JZO6W358XcZ/rawt9Oj3QwDvLLRvS2Bc=";
2016-10-03 22:10:07 +00:00
};
2017-02-19 13:24:17 +00:00
nativeBuildInputs = [
cmake
2021-01-17 02:21:50 +00:00
pkg-config
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2023-11-05 20:23:50 +00:00
qttools
2024-04-18 17:21:41 +00:00
wrapQtAppsHook
2017-02-19 13:24:17 +00:00
];
2016-10-03 22:10:07 +00:00
buildInputs = [
2017-02-25 15:44:29 +00:00
kwindowsystem
liblxqt
libqtxdg
2017-11-02 01:57:37 +00:00
pcre
2024-04-18 17:21:41 +00:00
polkit
polkit-qt-1
qtbase
qtsvg
qtwayland
2016-10-03 22:10:07 +00:00
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-policykit";
description = "LXQt PolicyKit agent";
mainProgram = "lxqt-policykit-agent";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2022-04-14 13:52:15 +00:00
maintainers = teams.lxqt.members;
2016-10-03 22:10:07 +00:00
};
}