2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, xcbuildHook, libiconv, ncurses, Cocoa }:
|
2016-01-09 01:06:24 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2021-02-03 15:31:51 +00:00
|
|
|
pname = "pinentry-mac";
|
|
|
|
version = "0.9.4";
|
2016-01-09 01:06:24 +00:00
|
|
|
|
2017-04-12 08:59:54 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matthewbauer";
|
|
|
|
repo = "pinentry-mac";
|
2017-09-06 04:35:00 +01:00
|
|
|
rev = "6dfef256c8ea32d642fea847f27d800f024cf51e";
|
|
|
|
sha256 = "0g75302697gqcxyf2hyqzvcbd5pyss1bl2xvfd40wqav7dlyvj83";
|
2016-01-09 01:06:24 +00:00
|
|
|
};
|
|
|
|
|
2018-07-06 23:53:50 +01:00
|
|
|
nativeBuildInputs = [ xcbuildHook ];
|
2019-06-19 18:53:18 +01:00
|
|
|
buildInputs = [ libiconv ncurses Cocoa ];
|
2017-04-09 10:24:16 +01:00
|
|
|
|
2021-02-25 07:00:09 +00:00
|
|
|
preBuild = ''
|
|
|
|
# Only build for what we care about (also allows arm64)
|
|
|
|
substituteInPlace pinentry-mac.xcodeproj/project.pbxproj \
|
|
|
|
--replace "i386 x86_64 ppc" "${stdenv.targetPlatform.darwinArch}"
|
|
|
|
'';
|
|
|
|
|
2016-01-09 01:06:24 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/Applications
|
2018-04-08 06:27:14 +01:00
|
|
|
mv Products/Release/pinentry-mac.app $out/Applications
|
2016-01-09 01:06:24 +00:00
|
|
|
'';
|
|
|
|
|
2016-06-17 10:27:59 +01:00
|
|
|
passthru = {
|
|
|
|
binaryPath = "Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac";
|
|
|
|
};
|
|
|
|
|
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;
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|