summary refs log tree commit diff
path: root/pkgs/applications/misc/abook
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2013-09-05 19:03:28 +0200
committerEdward Tjörnhammar <ed@cflags.cc>2013-09-06 05:37:28 +0200
commit485d22f862f14f8082c54695c7a905e2105bdd6f (patch)
tree5669555662f70d05ac4f70caf9089ff858ddabc6 /pkgs/applications/misc/abook
parent6167864aaba8e04d48070b0ee68d71c0e3eeb76c (diff)
downloadnixpkgs-485d22f862f14f8082c54695c7a905e2105bdd6f.tar
nixpkgs-485d22f862f14f8082c54695c7a905e2105bdd6f.tar.gz
nixpkgs-485d22f862f14f8082c54695c7a905e2105bdd6f.tar.bz2
nixpkgs-485d22f862f14f8082c54695c7a905e2105bdd6f.tar.lz
nixpkgs-485d22f862f14f8082c54695c7a905e2105bdd6f.tar.xz
nixpkgs-485d22f862f14f8082c54695c7a905e2105bdd6f.tar.zst
nixpkgs-485d22f862f14f8082c54695c7a905e2105bdd6f.zip
Added abook 0.6.0pre2
Abook is a text-based addressbook program designed to use with mutt mail
client.
Diffstat (limited to 'pkgs/applications/misc/abook')
-rw-r--r--pkgs/applications/misc/abook/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/misc/abook/default.nix b/pkgs/applications/misc/abook/default.nix
new file mode 100644
index 00000000000..09345576487
--- /dev/null
+++ b/pkgs/applications/misc/abook/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, pkgconfig, ncurses, readline }:
+
+let version = "0.6.0pre2"; in
+stdenv.mkDerivation rec {
+  name = "abook-${version}";
+
+  src = fetchurl {
+    url = "http://abook.sourceforge.net/devel/${name}.tar.gz";
+    sha256 = "59d444504109dd96816e003b3023175981ae179af479349c34fa70bc12f6d385";
+  };
+
+  buildInputs = [ pkgconfig ncurses readline ];
+
+  meta = {
+    homepage = "http://abook.sourceforge.net/";
+    description = "Abook is a text-based addressbook program designed to use with mutt mail client.";
+    license = "GPLv2";
+    maintainers = [ stdenv.lib.maintainers.edwtjo ];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}