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.

61 lines
974 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, lxqt-build-tools
, qtbase
, qttools
, qtx11extras
, qtsvg
, polkit
, polkit-qt
, kwindowsystem
, liblxqt
, libqtxdg
, pcre
, gitUpdater
2017-02-25 15:44:29 +00:00
}:
2016-10-03 22:10:07 +00:00
mkDerivation rec {
2016-10-03 22:10:07 +00:00
pname = "lxqt-policykit";
2023-11-05 20:23:50 +00:00
version = "1.4.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;
2023-11-05 20:23:50 +00:00
hash = "sha256-w0o76oBFNy3syQqyFZdAbFUu8yX+uA6cMOHf3WfKPEU=";
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
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
qtbase
qtx11extras
qtsvg
polkit
2017-02-25 15:44:29 +00:00
polkit-qt
kwindowsystem
liblxqt
libqtxdg
2017-11-02 01:57:37 +00:00
pcre
2016-10-03 22:10:07 +00:00
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-policykit";
description = "The 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
};
}