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

36 lines
702 B
Nix
Raw Normal View History

2019-11-17 11:51:25 +00:00
{ mkDerivation
, lib
, fetchFromGitHub
, cmake
, pkgconfig
, qtbase
, qttools
, qtx11extras
}:
mkDerivation rec {
pname = "birdtray";
2020-04-29 21:19:29 +01:00
version = "1.8.1";
2019-11-17 11:51:25 +00:00
src = fetchFromGitHub {
owner = "gyunaev";
repo = pname;
2020-04-20 09:56:02 +01:00
rev = version;
2020-04-29 21:19:29 +01:00
sha256 = "15l8drdmamq1dpqpj0h9ajj2r5vcs23cx421drvhfgs6bqlzd1hl";
2019-11-17 11:51:25 +00:00
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
2020-04-20 09:56:02 +01:00
qtbase qttools qtx11extras
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;
maintainers = with maintainers; [ Flakebi ];
platforms = platforms.linux;
};
}