mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 21:23:06 +00:00
1675b11cd4
Unfortunately I can't reliably commit time to nixpkgs, so I would like to remove myself from being a formal maintainer for these packages.
24 lines
697 B
Nix
24 lines
697 B
Nix
{ stdenv, fetchurl
|
|
, notmuch, openssl, pkgconfig, sqlite, xapian, zlib
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
version = "5";
|
|
pname = "muchsync";
|
|
passthru = {
|
|
inherit version;
|
|
};
|
|
src = fetchurl {
|
|
url = "http://www.muchsync.org/src/${pname}-${version}.tar.gz";
|
|
sha256 = "1k2m44pj5i6vfhp9icdqs42chsp208llanc666p3d9nww8ngq2lb";
|
|
};
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ notmuch openssl sqlite xapian zlib ];
|
|
meta = {
|
|
description = "Synchronize maildirs and notmuch databases";
|
|
homepage = "http://www.muchsync.org/";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [];
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|