summary refs log tree commit diff
path: root/pkgs/desktops/lxqt
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-10-03 18:55:22 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-10-06 08:02:37 -0300
commitbec679780d30b5dde09db6333cb1a4fb6e630441 (patch)
treeb715d865117b36bde9d29db5d48c1199dee18364 /pkgs/desktops/lxqt
parent0d68fecae788ba6ca674663623d851166c5954ee (diff)
downloadnixlib-bec679780d30b5dde09db6333cb1a4fb6e630441.tar
nixlib-bec679780d30b5dde09db6333cb1a4fb6e630441.tar.gz
nixlib-bec679780d30b5dde09db6333cb1a4fb6e630441.tar.bz2
nixlib-bec679780d30b5dde09db6333cb1a4fb6e630441.tar.lz
nixlib-bec679780d30b5dde09db6333cb1a4fb6e630441.tar.xz
nixlib-bec679780d30b5dde09db6333cb1a4fb6e630441.tar.zst
nixlib-bec679780d30b5dde09db6333cb1a4fb6e630441.zip
lxqt-notificationd: init at 0.11.0
Diffstat (limited to 'pkgs/desktops/lxqt')
-rw-r--r--pkgs/desktops/lxqt/core/lxqt-notificationd/default.nix35
-rw-r--r--pkgs/desktops/lxqt/default.nix1
2 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/desktops/lxqt/core/lxqt-notificationd/default.nix b/pkgs/desktops/lxqt/core/lxqt-notificationd/default.nix
new file mode 100644
index 000000000000..1ecef6334946
--- /dev/null
+++ b/pkgs/desktops/lxqt/core/lxqt-notificationd/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchFromGitHub, cmake, qt5, kde5, lxqt }:
+
+stdenv.mkDerivation rec {
+  name = "${pname}-${version}";
+  pname = "lxqt-notificationd";
+  version = "0.11.0";
+
+  srcs = fetchFromGitHub {
+    owner = "lxde";
+    repo = pname;
+    rev = version;
+    sha256 = "001xcvmg7ap5pbssc9pqp4jshgq2h4zxk9rra76xnrby6k8n6p3x";
+  };
+
+  nativeBuildInputs = [ cmake ];
+
+  buildInputs = [
+    qt5.qtbase
+    qt5.qttools
+    qt5.qtsvg
+    kde5.kwindowsystem
+    lxqt.liblxqt
+    lxqt.libqtxdg
+  ];
+
+  cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
+
+  meta = with stdenv.lib; {
+    description = "The LXQt notification daemon";
+    homepage = https://github.com/lxde/lxqt-notificationd;
+    license = licenses.lgpl21;
+    maintainers = with maintainers; [ romildo ];
+    platforms = with platforms; unix;
+  };
+}
diff --git a/pkgs/desktops/lxqt/default.nix b/pkgs/desktops/lxqt/default.nix
index 7c4eb63790fc..52f1961e6d7d 100644
--- a/pkgs/desktops/lxqt/default.nix
+++ b/pkgs/desktops/lxqt/default.nix
@@ -38,5 +38,6 @@ let
     lxqt-common = callPackage ./core/lxqt-common { };
     lxqt-config = callPackage ./core/lxqt-config { };
     lxqt-globalkeys = callPackage ./core/lxqt-globalkeys { };
+    lxqt-notificationd = callPackage ./core/lxqt-notificationd { };
 
 in self