nixpkgs/pkgs/tools/networking/offlineimap/default.nix
2016-03-13 08:44:53 +01:00

28 lines
697 B
Nix

{ stdenv, fetchFromGitHub, buildPythonApplication, sqlite3 }:
buildPythonApplication rec {
version = "6.7.0";
name = "offlineimap-${version}";
namePrefix = "";
src = fetchFromGitHub {
owner = "OfflineIMAP";
repo = "offlineimap";
rev = "v${version}";
sha256 = "127d7zy8h2h67bvrc4x98wcfskmkxislsv9qnvpgxlc56vnsrg54";
};
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 = stdenv.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.garbas ];
};
}