56 lines
881 B
Nix
56 lines
881 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, kwindowsystem
|
||
|
, liblxqt
|
||
|
, libqtxdg
|
||
|
, lxqt-build-tools
|
||
|
, qtbase
|
||
|
, qtsvg
|
||
|
, qttools
|
||
|
, qtwayland
|
||
|
, sudo
|
||
|
, wrapQtAppsHook
|
||
|
, gitUpdater
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "lxqt-sudo";
|
||
|
version = "2.1.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "lxqt";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
hash = "sha256-ohB0LsEnDDe3wygRgvP5mFQ2hu1c9xv2RilSdqOQBxA=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
lxqt-build-tools
|
||
|
qttools
|
||
|
wrapQtAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
kwindowsystem
|
||
|
liblxqt
|
||
|
libqtxdg
|
||
|
qtbase
|
||
|
qtsvg
|
||
|
qtwayland
|
||
|
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;
|
||
|
maintainers = teams.lxqt.members;
|
||
|
};
|
||
|
}
|