Files
nixpkgs/pkgs/by-name/co/contacts/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
889 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
xcbuildHook,
}:
stdenv.mkDerivation {
version = "1.1a-3";
pname = "contacts";
src = fetchFromGitHub {
owner = "dhess";
repo = "contacts";
rev = "4092a3c6615d7a22852a3bafc44e4aeeb698aa8f";
hash = "sha256-Li/c5uf9rfpuU+hduuSm7EmhVwIIkS72dqzmN+0cE3A=";
};
postPatch = ''
substituteInPlace contacts.m \
--replace "int peopleSort" "long peopleSort"
'';
nativeBuildInputs = [ xcbuildHook ];
installPhase = ''
mkdir -p $out/bin
cp Products/Default/contacts $out/bin
'';
meta = with lib; {
description = "Access contacts from the Mac address book from command-line";
homepage = "http://www.gnufoo.org/contacts/contacts.html";
license = licenses.gpl2Only;
maintainers = with maintainers; [ jwiegley ];
platforms = platforms.darwin;
hydraPlatforms = platforms.darwin;
};
}