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: c4fdb91a0b62
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 480d11f1664b
Choose a head ref
  • 4 commits
  • 2 files changed
  • 2 contributors

Commits on Sep 28, 2019

  1. Copy the full SHA
    5496caa View commit details

Commits on Sep 30, 2019

  1. Copy the full SHA
    a4487e8 View commit details
  2. Copy the full SHA
    fb6dd16 View commit details

Commits on Oct 3, 2019

  1. Merge pull request #69866 from doronbehar/package-hasmail

    hasmail: init at 2019-08-24
    matthewbauer authored Oct 3, 2019
    Copy the full SHA
    480d11f View commit details
Showing with 43 additions and 0 deletions.
  1. +41 −0 pkgs/applications/networking/mailreaders/hasmail/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
41 changes: 41 additions & 0 deletions pkgs/applications/networking/mailreaders/hasmail/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ lib
, buildGoModule
, fetchFromGitHub
, pkgconfig
, gobject-introspection
, pango
, cairo
, gtk2
}:

buildGoModule rec {
pname = "hasmail-unstable";
version = "2019-08-24";

src = fetchFromGitHub {
owner = "jonhoo";
repo = "hasmail";
rev = "eb52536d26815383bfe5990cd5ace8bb9d036c8d";
sha256 = "1p6kwa5xk1mb1fkkxz1b5rcyp5kb4zc8nfif1gk6fab6wbdj9ia1";
};

modSha256 = "0z3asz7v1izg81f9xifx9s2sp5hly173hajsn9idi3bkv0h78is2";

nativeBuildInputs = [
pkgconfig
];

buildInputs = [
pango
cairo
gtk2
];

meta = with lib; {
description = "Simple tray icon for detecting new email on IMAP servers";
homepage = "https://github.com/jonhoo/hasmail";
license = licenses.unlicense;
maintainers = with maintainers; [ doronbehar ];
platforms = platforms.all;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -3745,6 +3745,8 @@ in

hash-slinger = callPackage ../tools/security/hash-slinger { };

hasmail = callPackage ../applications/networking/mailreaders/hasmail { };

hal-flash = callPackage ../os-specific/linux/hal-flash { };

half = callPackage ../development/libraries/half { };