Skip to content

Commit

Permalink
muchsync: Add meta attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
ocharles committed Feb 3, 2017
1 parent 7d00b5f commit 3c05174
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pkgs/applications/networking/mailreaders/notmuch/muchsync.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@
stdenv.mkDerivation rec {
version = "2";
name = "muchsync-${version}";
passthru = {
inherit version;
};
src = fetchurl {
url = "http://www.muchsync.org/src/${name}.tar.gz";
sha256 = "1dqp23a043kkzl0g2f4j3m7r7lg303gz7a0fsj0dm5ag3kpvp5f1";
};
buildInputs = [ notmuch openssl pkgconfig sqlite xapian ];
meta = {
description = "Synchronize maildirs and notmuch databases";
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ ocharles ];
license = stdenv.lib.licenses.gpl2Plus;
};
}

0 comments on commit 3c05174

Please sign in to comment.