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
848 B
Nix
Raw Permalink Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, qtbase
, qttools
, qtx11extras
, qtsvg
, kwindowsystem
, liblxqt
, libqtxdg
, sudo
, gitUpdater
}:
2016-10-04 00:01:39 +02:00
mkDerivation rec {
2016-10-04 00:01:39 +02:00
pname = "lxqt-sudo";
2023-11-05 21:23:51 +01:00
version = "1.4.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;
2023-11-05 21:23:51 +01:00
hash = "sha256-J7jiap3qZD+P0kGzt+b3wa16pxbS2fr3OmalhV5O9ro=";
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
2023-11-05 21:23:51 +01:00
qttools
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
qtx11extras
qtsvg
kwindowsystem
liblxqt
libqtxdg
2016-10-04 00:01:39 +02:00
sudo
];
passthru.updateScript = gitUpdater { };
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
};
}