summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-10-02 20:06:17 -0400
committerGitHub <noreply@github.com>2019-10-02 20:06:17 -0400
commit480d11f1664b2f1b41edb348760fa89749a764b8 (patch)
treede83ce4db5b592fe1ae633f51481aa43a7c75815 /pkgs/applications/networking/mailreaders
parentc4fdb91a0b6210152bc7bf0f88f8419f714619c6 (diff)
parentfb6dd16789f7e8069407ee03ca70559218368dc9 (diff)
downloadnixpkgs-480d11f1664b2f1b41edb348760fa89749a764b8.tar
nixpkgs-480d11f1664b2f1b41edb348760fa89749a764b8.tar.gz
nixpkgs-480d11f1664b2f1b41edb348760fa89749a764b8.tar.bz2
nixpkgs-480d11f1664b2f1b41edb348760fa89749a764b8.tar.lz
nixpkgs-480d11f1664b2f1b41edb348760fa89749a764b8.tar.xz
nixpkgs-480d11f1664b2f1b41edb348760fa89749a764b8.tar.zst
nixpkgs-480d11f1664b2f1b41edb348760fa89749a764b8.zip
Merge pull request #69866 from doronbehar/package-hasmail
hasmail: init at 2019-08-24
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/hasmail/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mailreaders/hasmail/default.nix b/pkgs/applications/networking/mailreaders/hasmail/default.nix
new file mode 100644
index 00000000000..49f0ac53365
--- /dev/null
+++ b/pkgs/applications/networking/mailreaders/hasmail/default.nix
@@ -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;
+  };
+}