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

49 lines
1.1 KiB
Nix
Raw Normal View History

2017-02-25 15:44:29 +00:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtx11extras, qtsvg, kwindowsystem, solid, kidletime, liblxqt, libqtxdg }:
2016-10-03 21:59:34 +00:00
stdenv.mkDerivation rec {
pname = "lxqt-powermanagement";
version = "0.14.1";
2016-10-03 21:59:34 +00:00
2017-11-02 01:57:57 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 21:59:34 +00:00
repo = pname;
rev = version;
sha256 = "1nhp4a28bpczhwz8b8da355zsxr1qwmkrm3bwllwp39liw947clx";
2016-10-03 21:59:34 +00:00
};
2017-02-19 13:28:13 +00:00
nativeBuildInputs = [
cmake
2017-02-25 15:44:29 +00:00
lxqt-build-tools
2017-02-19 13:28:13 +00:00
];
2016-10-03 21:59:34 +00:00
buildInputs = [
2017-02-25 15:44:29 +00:00
qtbase
qttools
qtx11extras
qtsvg
kwindowsystem
solid
kidletime
liblxqt
libqtxdg
2016-10-03 21:59:34 +00:00
];
2017-11-02 01:57:57 +00:00
postPatch = ''
substituteInPlace autostart/CMakeLists.txt \
--replace "DESTINATION \"\''${LXQT_ETC_XDG_DIR}" "DESTINATION \"etc/xdg"
2019-02-05 23:13:53 +00:00
for f in {config,src}/CMakeLists.txt; do
substituteInPlace $f \
--replace "\''${LXQT_TRANSLATIONS_DIR}" "''${out}/share/lxqt/translations"
done
2017-11-02 01:57:57 +00:00
'';
2016-10-03 21:59:34 +00:00
meta = with stdenv.lib; {
description = "Power management module for LXQt";
homepage = https://github.com/lxqt/lxqt-powermanagement;
2016-10-03 21:59:34 +00:00
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 13:28:13 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 21:59:34 +00:00
};
}