nixpkgs/pkgs/desktops/lxqt/core/lxqt-admin/default.nix

42 lines
915 B
Nix
Raw Normal View History

2017-02-25 16:44:29 +01:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, standardPatch, qtx11extras, qttools, qtsvg, kwindowsystem, liblxqt, libqtxdg, polkit }:
2016-10-03 23:52:08 +02:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-admin";
2017-02-19 13:59:23 +01:00
version = "0.11.1";
2016-10-03 23:52:08 +02:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 13:59:23 +01:00
sha256 = "12c1wdciqgiifsk5aslw3990pk9ylk9jhgwnrxvh798rr48hhflr";
2016-10-03 23:52:08 +02:00
};
nativeBuildInputs = [
cmake
2017-02-25 16:44:29 +01:00
lxqt-build-tools
2016-10-03 23:52:08 +02:00
];
buildInputs = [
2017-02-25 16:44:29 +01:00
qtx11extras
qttools
qtsvg
kwindowsystem
liblxqt
libqtxdg
2016-10-03 23:52:08 +02:00
polkit
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
2017-02-25 16:44:29 +01:00
postPatch = standardPatch;
2016-10-03 23:52:08 +02:00
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 13:59:23 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:52:08 +02:00
};
}