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

40 lines
869 B
Nix
Raw Normal View History

2017-11-01 18:54:39 -07:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtx11extras, qttools, qtsvg, kwindowsystem, liblxqt, libqtxdg, polkit }:
2016-10-03 14:52:08 -07:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-admin";
2017-11-01 18:54:39 -07:00
version = "0.12.0";
2016-10-03 14:52:08 -07:00
2017-11-01 18:54:39 -07:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 14:52:08 -07:00
repo = pname;
rev = version;
2017-11-01 18:54:39 -07:00
sha256 = "0dg3gm5m19dc4jarh8xcn0mcnpgxzz7nhy5dzm8chddaa6pdm7vi";
2016-10-03 14:52:08 -07:00
};
nativeBuildInputs = [
cmake
2017-02-25 07:44:29 -08:00
lxqt-build-tools
2016-10-03 14:52:08 -07:00
];
buildInputs = [
2017-02-25 07:44:29 -08:00
qtx11extras
qttools
qtsvg
kwindowsystem
liblxqt
libqtxdg
2016-10-03 14:52:08 -07:00
polkit
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "LXQt system administration tool";
homepage = https://github.com/lxqt/lxqt-admin;
2016-10-03 14:52:08 -07:00
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 04:59:23 -08:00
maintainers = with maintainers; [ romildo ];
2016-10-03 14:52:08 -07:00
};
}