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

43 lines
941 B
Nix
Raw Normal View History

2017-02-25 07:44:29 -08:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtx11extras, qtsvg, kwindowsystem, liblxqt, libqtxdg, sudo }:
2016-10-03 15:01:39 -07:00
stdenv.mkDerivation rec {
pname = "lxqt-sudo";
2019-02-05 15:14:08 -08:00
version = "0.14.0";
2016-10-03 15:01:39 -07:00
2017-11-01 18:59:37 -07:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 15:01:39 -07:00
repo = pname;
rev = version;
2019-02-05 15:14:08 -08:00
sha256 = "0l8fq06kfsrmvg2fr8lqdsxr6fwxmxsa9zwaa3fs9inzaylm0jkh";
2016-10-03 15:01:39 -07:00
};
2017-02-19 05:35:35 -08:00
nativeBuildInputs = [
cmake
2017-02-25 07:44:29 -08:00
lxqt-build-tools
2017-02-19 05:35:35 -08:00
];
2016-10-03 15:01:39 -07:00
buildInputs = [
2017-02-25 07:44:29 -08:00
qtbase
qttools
qtx11extras
qtsvg
kwindowsystem
liblxqt
libqtxdg
2016-10-03 15:01:39 -07:00
sudo
];
2019-02-05 15:14:08 -08:00
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace "\''${LXQT_TRANSLATIONS_DIR}" "''${out}/share/lxqt/translations"
'';
2016-10-03 15:01:39 -07:00
meta = with stdenv.lib; {
description = "GUI frontend for sudo/su";
homepage = https://github.com/lxqt/lxqt-sudo;
2016-10-03 15:01:39 -07:00
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 05:35:35 -08:00
maintainers = with maintainers; [ romildo ];
2016-10-03 15:01:39 -07:00
};
}