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.

56 lines
881 B
Nix
Raw Normal View History

{ lib
2024-04-18 18:21:41 +01:00
, stdenv
, fetchFromGitHub
, cmake
, kwindowsystem
, liblxqt
, libqtxdg
2024-04-18 18:21:41 +01:00
, lxqt-build-tools
, qtbase
, qtsvg
, qttools
, qtwayland
, sudo
2024-04-18 18:21:41 +01:00
, wrapQtAppsHook
, gitUpdater
}:
2016-10-03 23:01:39 +01:00
2024-04-18 18:21:41 +01:00
stdenv.mkDerivation rec {
2016-10-03 23:01:39 +01:00
pname = "lxqt-sudo";
2024-11-07 02:22:16 +00:00
version = "2.1.0";
2016-10-03 23:01:39 +01:00
2017-11-02 01:59:37 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 23:01:39 +01:00
repo = pname;
rev = version;
2024-11-07 02:22:16 +00:00
hash = "sha256-ohB0LsEnDDe3wygRgvP5mFQ2hu1c9xv2RilSdqOQBxA=";
2016-10-03 23:01:39 +01:00
};
2017-02-19 13:35:35 +00:00
nativeBuildInputs = [
cmake
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2023-11-05 20:23:51 +00:00
qttools
2024-04-18 18:21:41 +01:00
wrapQtAppsHook
2017-02-19 13:35:35 +00:00
];
2016-10-03 23:01:39 +01:00
buildInputs = [
2017-02-25 15:44:29 +00:00
kwindowsystem
liblxqt
libqtxdg
2024-04-18 18:21:41 +01:00
qtbase
qtsvg
qtwayland
2016-10-03 23:01:39 +01: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 14:52:15 +01:00
maintainers = teams.lxqt.members;
2016-10-03 23:01:39 +01:00
};
}