about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/birdtray
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/misc/birdtray')
-rw-r--r--nixpkgs/pkgs/applications/misc/birdtray/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/misc/birdtray/default.nix b/nixpkgs/pkgs/applications/misc/birdtray/default.nix
new file mode 100644
index 000000000000..5385cf67884d
--- /dev/null
+++ b/nixpkgs/pkgs/applications/misc/birdtray/default.nix
@@ -0,0 +1,35 @@
+{ mkDerivation
+  , lib
+  , fetchFromGitHub
+
+  , cmake
+  , pkgconfig
+  , qtbase
+  , qttools
+  , qtx11extras
+}:
+
+mkDerivation rec {
+  pname = "birdtray";
+  version = "1.8.1";
+
+  src = fetchFromGitHub {
+    owner = "gyunaev";
+    repo = pname;
+    rev = version;
+    sha256 = "15l8drdmamq1dpqpj0h9ajj2r5vcs23cx421drvhfgs6bqlzd1hl";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+  buildInputs = [
+    qtbase qttools qtx11extras
+  ];
+
+  meta = with lib; {
+    description = "Mail system tray notification icon for Thunderbird";
+    homepage = "https://github.com/gyunaev/birdtray";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ Flakebi ];
+    platforms = platforms.linux;
+  };
+}