nixpkgs/pkgs/applications/misc/birdtray/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
875 B
Nix
Raw Normal View History

2019-11-17 11:51:25 +00:00
{ mkDerivation
, lib
, fetchFromGitHub
, cmake
, pkg-config
2019-11-17 11:51:25 +00:00
, qtbase
, qttools
, qtx11extras
}:
mkDerivation rec {
pname = "birdtray";
2023-09-13 10:38:53 +00:00
version = "1.11.4";
2019-11-17 11:51:25 +00:00
src = fetchFromGitHub {
owner = "gyunaev";
repo = pname;
2020-10-23 18:09:46 +00:00
rev = "v${version}";
2023-09-13 10:38:53 +00:00
sha256 = "sha256-rj8tPzZzgW0hXmq8c1LiunIX1tO/tGAaqDGJgCQda5M=";
2019-11-17 11:51:25 +00:00
};
nativeBuildInputs = [ cmake pkg-config ];
2019-11-17 11:51:25 +00:00
buildInputs = [
2020-04-20 08:56:02 +00:00
qtbase qttools qtx11extras
2019-11-17 11:51:25 +00:00
];
2021-03-17 17:03:31 +00:00
# Wayland support is broken.
# https://github.com/gyunaev/birdtray/issues/113#issuecomment-621742315
qtWrapperArgs = [ "--set QT_QPA_PLATFORM xcb" ];
2019-11-17 11:51:25 +00:00
meta = with lib; {
description = "Mail system tray notification icon for Thunderbird";
homepage = "https://github.com/gyunaev/birdtray";
2019-11-17 11:51:25 +00:00
license = licenses.gpl3Plus;
2021-03-17 17:03:31 +00:00
maintainers = with maintainers; [ Flakebi oxalica ];
2019-11-17 11:51:25 +00:00
platforms = platforms.linux;
};
}