commit
edbc28b6ca
3 changed files with 52 additions and 0 deletions
|
@ -2301,6 +2301,16 @@
|
||||||
githubId = 415760;
|
githubId = 415760;
|
||||||
name = "Jonas Höglund";
|
name = "Jonas Höglund";
|
||||||
};
|
};
|
||||||
|
Flakebi = {
|
||||||
|
email = "flakebi@t-online.de";
|
||||||
|
github = "Flakebi";
|
||||||
|
githubId = "Flakebi";
|
||||||
|
name = "Sebastian Neubauer";
|
||||||
|
keys = [{
|
||||||
|
longkeyid = "rsa4096/0xECC755EE583C1672";
|
||||||
|
fingerprint = "2F93 661D AC17 EA98 A104 F780 ECC7 55EE 583C 1672";
|
||||||
|
}];
|
||||||
|
};
|
||||||
flexw = {
|
flexw = {
|
||||||
email = "felix.weilbach@t-online.de";
|
email = "felix.weilbach@t-online.de";
|
||||||
github = "FlexW";
|
github = "FlexW";
|
||||||
|
|
40
pkgs/applications/misc/birdtray/default.nix
Normal file
40
pkgs/applications/misc/birdtray/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ mkDerivation
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
|
||||||
|
, cmake
|
||||||
|
, pkgconfig
|
||||||
|
, qtbase
|
||||||
|
, qttools
|
||||||
|
, qtx11extras
|
||||||
|
, sqlite
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "birdtray";
|
||||||
|
version = "1.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gyunaev";
|
||||||
|
repo = pname;
|
||||||
|
rev = "RELEASE_${version}";
|
||||||
|
sha256 = "0n6qr224ir59ncid4xbdilk5642z0kcaylzbil1bdcv3h32ysjym";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
buildInputs = [
|
||||||
|
qtbase qtx11extras sqlite
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm755 birdtray $out/bin/birdtray
|
||||||
|
'';
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1133,6 +1133,8 @@ in
|
||||||
|
|
||||||
bindfs = callPackage ../tools/filesystems/bindfs { };
|
bindfs = callPackage ../tools/filesystems/bindfs { };
|
||||||
|
|
||||||
|
birdtray = libsForQt5.callPackage ../applications/misc/birdtray { };
|
||||||
|
|
||||||
bitbucket-cli = python2Packages.bitbucket-cli;
|
bitbucket-cli = python2Packages.bitbucket-cli;
|
||||||
|
|
||||||
blink = libsForQt5.callPackage ../applications/networking/instant-messengers/blink { };
|
blink = libsForQt5.callPackage ../applications/networking/instant-messengers/blink { };
|
||||||
|
|
Loading…
Reference in a new issue