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

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

54 lines
882 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, qtbase
, qttools
, qtx11extras
, qtsvg
, kwindowsystem
, liblxqt
, libqtxdg
, sudo
, lxqtUpdateScript
}:
2016-10-04 00:01:39 +02:00
mkDerivation rec {
2016-10-04 00:01:39 +02:00
pname = "lxqt-sudo";
2022-04-16 21:16:31 +02:00
version = "1.1.0";
2016-10-04 00:01:39 +02:00
2017-11-02 02:59:37 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-04 00:01:39 +02:00
repo = pname;
rev = version;
2022-04-16 21:16:31 +02:00
sha256 = "Oa4OYIDXQUIQ96pEY7rGBq+spwVSU+kgDS7250tYNuc=";
2016-10-04 00:01:39 +02:00
};
2017-02-19 14:35:35 +01:00
nativeBuildInputs = [
cmake
2017-02-25 16:44:29 +01:00
lxqt-build-tools
2017-02-19 14:35:35 +01:00
];
2016-10-04 00:01:39 +02:00
buildInputs = [
2017-02-25 16:44:29 +01:00
qtbase
qttools
qtx11extras
qtsvg
kwindowsystem
liblxqt
libqtxdg
2016-10-04 00:01:39 +02:00
sudo
];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-sudo";
description = "GUI frontend for sudo/su";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2022-04-14 15:52:15 +02:00
maintainers = teams.lxqt.members;
2016-10-04 00:01:39 +02:00
};
}