3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/abook/default.nix
Robin Gloster 1f978b7422 Revert "abook: fix compiling with gcc5"
This reverts commit 37918bdc7a.

has been fixed on master differently
2016-04-03 12:27:29 +00:00

30 lines
907 B
Nix

{ stdenv, fetchurl, fetchpatch, pkgconfig, ncurses, readline }:
stdenv.mkDerivation rec {
name = "abook-0.6.0pre2";
src = fetchurl {
url = "http://abook.sourceforge.net/devel/${name}.tar.gz";
sha256 = "11fkyq9bqw7s6jf38yglk8bsx0ar2wik0fq0ds0rdp8985849m2r";
};
patches = [
(fetchpatch {
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk/gcc5.patch?h=packages/abook";
name = "gcc5.patch";
sha256 = "13n3qd6yy45i5n8ppjn9hj6y63ymjrq96280683xk7f7rjavw5nn";
})
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses readline ];
meta = {
homepage = "http://abook.sourceforge.net/";
description = "Text-based addressbook program designed to use with mutt mail client";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.edwtjo ];
platforms = with stdenv.lib.platforms; linux;
};
}