hasmail: init at 2019-08-24
This commit is contained in:
parent
a8d3aebdce
commit
5496caac48
2 changed files with 42 additions and 0 deletions
40
pkgs/applications/networking/mailreaders/hasmail/default.nix
Normal file
40
pkgs/applications/networking/mailreaders/hasmail/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkgconfig
|
||||||
|
, gobject-introspection
|
||||||
|
, pango
|
||||||
|
, cairo
|
||||||
|
, gtk2
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "hasmail";
|
||||||
|
version = "2019-08-24";
|
||||||
|
name = "${pname}-${version}-unstable";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jonhoo";
|
||||||
|
repo = "hasmail";
|
||||||
|
rev = "eb52536d26815383bfe5990cd5ace8bb9d036c8d";
|
||||||
|
sha256 = "1p6kwa5xk1mb1fkkxz1b5rcyp5kb4zc8nfif1gk6fab6wbdj9ia1";
|
||||||
|
};
|
||||||
|
|
||||||
|
modSha256 = "0z3asz7v1izg81f9xifx9s2sp5hly173hajsn9idi3bkv0h78is2";
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
gobject-introspection
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -3720,6 +3720,8 @@ in
|
||||||
|
|
||||||
hash-slinger = callPackage ../tools/security/hash-slinger { };
|
hash-slinger = callPackage ../tools/security/hash-slinger { };
|
||||||
|
|
||||||
|
hasmail = callPackage ../applications/networking/mailreaders/hasmail { };
|
||||||
|
|
||||||
hal-flash = callPackage ../os-specific/linux/hal-flash { };
|
hal-flash = callPackage ../os-specific/linux/hal-flash { };
|
||||||
|
|
||||||
half = callPackage ../development/libraries/half { };
|
half = callPackage ../development/libraries/half { };
|
||||||
|
|
Loading…
Reference in a new issue