2019-06-19 19:41:13 +02:00
|
|
|
{ stdenv, fetchurl, xcbuildHook, Foundation, AddressBook }:
|
2015-02-12 23:58:11 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2015-02-12 23:58:11 +01:00
|
|
|
version = "1.1a-3";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "contacts";
|
2015-02-12 23:58:11 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/dhess/contacts/archive/4092a3c6615d7a22852a3bafc44e4aeeb698aa8f.tar.gz";
|
|
|
|
sha256 = "0wdqc1ndgrdhqapvvgx5xihc750szv08lp91x4l6n0gh59cpxpg3";
|
|
|
|
};
|
|
|
|
|
2018-07-07 00:53:50 +02:00
|
|
|
nativeBuildInputs = [ xcbuildHook ];
|
2019-06-19 19:41:13 +02:00
|
|
|
buildInputs = [ Foundation AddressBook ];
|
2015-02-12 23:58:11 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2018-04-08 07:27:14 +02:00
|
|
|
cp Products/Default/contacts $out/bin
|
2015-02-12 23:58:11 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Access contacts from the Mac address book from command-line";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.gnufoo.org/contacts/contacts.html";
|
2015-02-12 23:58:11 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ jwiegley ];
|
|
|
|
platforms = stdenv.lib.platforms.darwin;
|
|
|
|
hydraPlatforms = stdenv.lib.platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|