mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
b2d7f4b1ba
Many (less easily automatically converted) old-style strings remain. Where there was any possible ambiguity about the exact version or variant intended, nothing was changed. IANAL, nor a search robot. Use `with stdenv.lib` wherever it makes sense.
22 lines
591 B
Nix
22 lines
591 B
Nix
{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "isync-1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/isync/${name}.tar.gz";
|
|
sha256 = "0n8fwvv88h7ps7qs122kgh1yx5308765fiwqav5h7m272vg7hf43";
|
|
};
|
|
|
|
buildInputs = [ openssl pkgconfig db cyrus_sasl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://isync.sourceforge.net/;
|
|
description = "Free IMAP and MailDir mailbox synchronizer";
|
|
license = with licenses; [ gpl2Plus ];
|
|
|
|
maintainers = with maintainers; [ the-kenny viric ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|