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

42 lines
878 B
Nix
Raw Normal View History

2016-10-03 15:10:07 -07:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, kde5, lxqt }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-policykit";
2017-02-19 05:24:17 -08:00
version = "0.11.1";
2016-10-03 15:10:07 -07:00
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
2017-02-19 05:24:17 -08:00
sha256 = "0sf8wj152z1xid1i2x5g1zpgh7lwq8f0rbrk3r9shyksxqcj2d8p";
2016-10-03 15:10:07 -07:00
};
2017-02-19 05:24:17 -08:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-03 15:10:07 -07:00
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtx11extras
qt5.qtsvg
qt5.polkit-qt
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "The LXQt PolicyKit agent";
homepage = https://github.com/lxde/lxqt-policykit;
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 05:24:17 -08:00
maintainers = with maintainers; [ romildo ];
2016-10-03 15:10:07 -07:00
};
}