nixpkgs/pkgs/tools/networking/offlineimap/default.nix

28 lines
683 B
Nix
Raw Normal View History

2016-01-02 17:58:36 +01:00
{ pkgs, fetchFromGitHub, buildPythonPackage, sqlite3 }:
buildPythonPackage rec {
2016-01-02 17:58:36 +01:00
version = "6.6.1";
name = "offlineimap-${version}";
namePrefix = "";
2016-01-02 17:58:36 +01:00
src = fetchFromGitHub {
owner = "OfflineIMAP";
repo = "offlineimap";
rev = "v${version}";
sha256 = "0nn1qkxqy84h0a2acd1yx861wslh2fjfznkcq15856npbd34yqy5";
};
doCheck = false;
propagatedBuildInputs = [
sqlite3
];
meta = {
description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
homepage = "http://offlineimap.org";
license = pkgs.lib.licenses.gpl2Plus;
maintainers = [ pkgs.lib.maintainers.garbas ];
};
}