083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
27 lines
700 B
Nix
27 lines
700 B
Nix
{ pkgs, fetchurl, buildPythonPackage, sqlite3 }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "6.5.5-rc2";
|
|
name = "offlineimap-${version}";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/OfflineIMAP/offlineimap/tarball/v${version}";
|
|
name = "${name}.tar.bz";
|
|
sha256 = "03w3irh8pxwvivi139xm5iaj2f8vmriak1ispq9d9f84z1098pd3";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|