lxqt-notificationd: 0.11.0 -> 0.11.1

This commit is contained in:
romildo 2017-02-19 10:15:20 -03:00
parent 87393b2a6f
commit 183550cb2e

View File

@ -3,16 +3,19 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "lxqt-notificationd";
version = "0.11.0";
version = "0.11.1";
srcs = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
sha256 = "001xcvmg7ap5pbssc9pqp4jshgq2h4zxk9rra76xnrby6k8n6p3x";
sha256 = "1n39zjczzhqn73vfyjngybmk9w8j1z3vjkaq80rf2hk89vwsm0wc";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [
cmake
lxqt.lxqt-build-tools
];
buildInputs = [
qt5.qtbase
@ -21,6 +24,7 @@ stdenv.mkDerivation rec {
kde5.kwindowsystem
lxqt.liblxqt
lxqt.libqtxdg
lxqt.lxqt-common
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
@ -29,7 +33,7 @@ stdenv.mkDerivation rec {
description = "The LXQt notification daemon";
homepage = https://github.com/lxde/lxqt-notificationd;
license = licenses.lgpl21;
maintainers = with maintainers; [ romildo ];
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
};
}