dotfiles.nix/packages/pinentry-mac.nix
2023-03-20 13:15:32 -07:00

23 lines
470 B
Nix

{
lib,
pinentry_mac,
stdenv,
}:
stdenv.mkDerivation {
name = "pinentry-mac";
src = pinentry_mac;
installPhase = ''
# -*-sh-*-
mkdir -p "$out/bin"
cp "$src/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac" "$out/bin/pinentry-mac"
'';
meta = with lib; {
description = "Pinentry for GPG on Mac";
license = licenses.gpl2Plus;
homepage = "https://github.com/GPGTools/pinentry-mac";
platforms = platforms.darwin;
};
}