1 { lib, stdenv, fetchurl, fetchpatch, pkg-config, ncurses, readline, autoreconfHook }:
3 stdenv.mkDerivation rec {
8 url = "http://abook.sourceforge.net/devel/abook-${version}.tar.gz";
9 sha256 = "1yf0ifyjhq2r003pnpn92mn0924bn9yxjifxxj2ldcsgd7w0vagh";
14 url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/gcc5.patch?h=packages/abook";
16 sha256 = "13n3qd6yy45i5n8ppjn9hj6y63ymjrq96280683xk7f7rjavw5nn";
20 nativeBuildInputs = [ pkg-config autoreconfHook ];
21 buildInputs = [ ncurses readline ];
24 homepage = "http://abook.sourceforge.net/";
25 description = "Text-based addressbook program designed to use with mutt mail client";
26 license = lib.licenses.gpl2;
27 maintainers = [ lib.maintainers.edwtjo ];
28 platforms = with lib.platforms; unix;