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

47 lines
1.1 KiB
Nix
Raw Normal View History

2017-11-02 02:56:20 +01:00
{ stdenv, fetchFromGitHub, cmake, lxqt-build-tools, qtbase, qttools, qtsvg, kwindowsystem, liblxqt, libqtxdg, qtx11extras }:
2016-10-03 23:55:22 +02:00
stdenv.mkDerivation rec {
pname = "lxqt-notificationd";
version = "0.14.1";
2016-10-03 23:55:22 +02:00
2017-11-02 02:56:20 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 23:55:22 +02:00
repo = pname;
rev = version;
sha256 = "1ihaf2i361j2snyy6kg8ccpfnc8hppvacmxjqzb1lpyaf1ajd139";
2016-10-03 23:55:22 +02:00
};
2017-02-19 14:15:20 +01:00
nativeBuildInputs = [
cmake
2017-02-25 16:44:29 +01:00
lxqt-build-tools
2017-02-19 14:15:20 +01:00
];
2016-10-03 23:55:22 +02:00
2017-11-02 02:56:20 +01:00
postPatch = ''
substituteInPlace autostart/CMakeLists.txt \
--replace "DESTINATION \"\''${LXQT_ETC_XDG_DIR}" "DESTINATION \"etc/xdg"
2019-02-06 00:13:39 +01:00
for f in {config,src}/CMakeLists.txt; do
substituteInPlace $f \
--replace "\''${LXQT_TRANSLATIONS_DIR}" "''${out}/share/lxqt/translations"
done
2017-11-02 02:56:20 +01:00
'';
2016-10-03 23:55:22 +02:00
buildInputs = [
2017-02-25 16:44:29 +01:00
qtbase
qttools
qtsvg
kwindowsystem
liblxqt
libqtxdg
qtx11extras
2016-10-03 23:55:22 +02:00
];
meta = with stdenv.lib; {
description = "The LXQt notification daemon";
homepage = https://github.com/lxqt/lxqt-notificationd;
2016-10-03 23:55:22 +02:00
license = licenses.lgpl21;
platforms = with platforms; unix;
2017-02-19 14:15:20 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:55:22 +02:00
};
}