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

58 lines
997 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, qtbase
, qttools
, qtx11extras
, qtsvg
, kwindowsystem
, solid
, kidletime
, liblxqt
, libqtxdg
, lxqt-globalkeys
, lxqtUpdateScript
}:
2016-10-03 23:59:34 +02:00
mkDerivation rec {
2016-10-03 23:59:34 +02:00
pname = "lxqt-powermanagement";
version = "1.0.0";
2016-10-03 23:59:34 +02:00
2017-11-02 02:57:57 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 23:59:34 +02:00
repo = pname;
rev = version;
sha256 = "0dwz8z3463dz49d5k5bh7splb1zdi617xc4xzlqxxrxbf3n8x4ix";
2016-10-03 23:59:34 +02:00
};
2017-02-19 14:28:13 +01:00
nativeBuildInputs = [
cmake
2017-02-25 16:44:29 +01:00
lxqt-build-tools
2017-02-19 14:28:13 +01:00
];
2016-10-03 23:59:34 +02:00
buildInputs = [
2017-02-25 16:44:29 +01:00
qtbase
qttools
qtx11extras
qtsvg
kwindowsystem
solid
kidletime
liblxqt
libqtxdg
lxqt-globalkeys
2016-10-03 23:59:34 +02:00
];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/lxqt-powermanagement";
description = "Power management module for LXQt";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
2017-02-19 14:28:13 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:59:34 +02:00
};
}