Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f0d170bb49a1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: edbc28b6caeb
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 17, 2019

  1. birdtray: init at 1.6

    Flakebi committed Nov 17, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    Flakebi Sebastian Neubauer
    Copy the full SHA
    8b2f36f View commit details
  2. Merge pull request #73550 from Flakebi/birdtray

    birdtray: init at 1.6
    ryantm authored Nov 17, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    edbc28b View commit details
Showing with 52 additions and 0 deletions.
  1. +10 −0 maintainers/maintainer-list.nix
  2. +40 −0 pkgs/applications/misc/birdtray/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
10 changes: 10 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -2301,6 +2301,16 @@
githubId = 415760;
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 = {
email = "felix.weilbach@t-online.de";
github = "FlexW";
40 changes: 40 additions & 0 deletions pkgs/applications/misc/birdtray/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -1133,6 +1133,8 @@ in

bindfs = callPackage ../tools/filesystems/bindfs { };

birdtray = libsForQt5.callPackage ../applications/misc/birdtray { };

bitbucket-cli = python2Packages.bitbucket-cli;

blink = libsForQt5.callPackage ../applications/networking/instant-messengers/blink { };