3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/lxqt/core/lxqt-admin/default.nix

42 lines
873 B
Nix
Raw Normal View History

2017-02-19 12:59:23 +00:00
{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt, polkit }:
2016-10-03 22:52:08 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-admin";
2017-02-19 12:59:23 +00:00
version = "0.11.1";
2016-10-03 22:52:08 +01:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 12:59:23 +00:00
sha256 = "12c1wdciqgiifsk5aslw3990pk9ylk9jhgwnrxvh798rr48hhflr";
2016-10-03 22:52:08 +01:00
};
nativeBuildInputs = [
cmake
2017-02-19 12:59:23 +00:00
lxqt.lxqt-build-tools
2016-10-03 22:52:08 +01:00
];
buildInputs = [
qt5.qtx11extras
qt5.qttools
qt5.qtsvg
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg
polkit
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
postPatch = lxqt.standardPatch;
meta = with stdenv.lib; {
description = "LXQt system administration tool";
homepage = https://github.com/lxde/lxqt-admin;
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 12:59:23 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 22:52:08 +01:00
};
}