nixpkgs/pkgs/tools/security/pinentry/mac.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
2.0 KiB
Nix
Raw Normal View History

2022-06-04 07:03:02 +00:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, libassuan
, libgpg-error
, libiconv
, texinfo
, common-updater-scripts
, writers
2022-06-04 07:03:02 +00:00
, Cocoa
}:
2016-01-09 01:06:24 +00:00
2022-06-04 07:03:02 +00:00
stdenv.mkDerivation rec {
2021-02-03 15:31:51 +00:00
pname = "pinentry-mac";
# NOTE: Don't update manually. Use passthru.updateScript on a Mac with XCode
# installed.
2022-06-04 07:03:02 +00:00
version = "1.1.1.1";
2016-01-09 01:06:24 +00:00
src = fetchFromGitHub {
2022-06-04 07:03:02 +00:00
owner = "GPGTools";
repo = "pinentry";
rev = "v${version}";
sha256 = "sha256-QnDuqFrI/U7aZ5WcOCp5vLE+w59LVvDGOFNQy9fSy70=";
2016-01-09 01:06:24 +00:00
};
# use pregenerated nib files because generating them requires XCode
2022-06-04 07:03:02 +00:00
postPatch = ''
cp -r ${./mac/Main.nib} macosx/Main.nib
cp -r ${./mac/Pinentry.nib} macosx/Pinentry.nib
chmod -R u+w macosx/*.nib
2022-06-04 07:03:02 +00:00
'';
nativeBuildInputs = [ autoreconfHook texinfo ];
buildInputs = [ libassuan libgpg-error libiconv Cocoa ];
configureFlags = [ "--enable-maintainer-mode" "--disable-ncurses" ];
2017-04-09 09:24:16 +00:00
2016-01-09 01:06:24 +00:00
installPhase = ''
mkdir -p $out/Applications
2022-06-04 07:03:02 +00:00
mv macosx/pinentry-mac.app $out/Applications
2016-01-09 01:06:24 +00:00
'';
enableParallelBuilding = true;
passthru = {
binaryPath = "Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac";
updateScript = writers.writeBash "update-pinentry-mac" ''
set -euxo pipefail
main() {
tag="$(queryLatestTag)"
ver="$(expr "$tag" : 'v\(.*\)')"
${common-updater-scripts}/bin/update-source-version pinentry_mac "$ver"
cd ${lib.escapeShellArg ./.}
rm -rf mac
mkdir mac
srcDir="$(nix-build ../../../.. --no-out-link -A pinentry_mac.src)"
for path in "$srcDir"/macosx/*.xib; do
filename="''${path##*/}"
/usr/bin/ibtool --compile "mac/''${filename%.*}.nib" "$path"
done
}
queryLatestTag() {
curl -sS https://api.github.com/repos/GPGTools/pinentry/tags \
| jq -r '.[] | .name' | sort --version-sort | tail -1
}
main
'';
};
2016-01-09 01:06:24 +00:00
meta = {
description = "Pinentry for GPG on Mac";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2Plus;
homepage = "https://github.com/GPGTools/pinentry-mac";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.darwin;
2016-01-09 01:06:24 +00:00
};
}