2017-04-12 09:59:54 +02:00
|
|
|
{ fetchurl, stdenv, fetchFromGitHub, xcbuild, libiconv, Cocoa, ncurses }:
|
2016-01-09 02:06:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pinentry-mac-0.9.4";
|
|
|
|
|
2017-04-12 09:59:54 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matthewbauer";
|
|
|
|
repo = "pinentry-mac";
|
2017-09-06 05:35:00 +02:00
|
|
|
rev = "6dfef256c8ea32d642fea847f27d800f024cf51e";
|
|
|
|
sha256 = "0g75302697gqcxyf2hyqzvcbd5pyss1bl2xvfd40wqav7dlyvj83";
|
2016-01-09 02:06:24 +01:00
|
|
|
};
|
|
|
|
|
2017-04-12 09:59:54 +02:00
|
|
|
buildInputs = [ xcbuild libiconv Cocoa ncurses ];
|
2017-04-09 11:24:16 +02:00
|
|
|
|
|
|
|
dontUseXcbuild = true;
|
2016-01-09 02:06:24 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/Applications
|
2017-04-12 09:59:54 +02:00
|
|
|
mv pinentry-mac-*/Build/Products/Release/pinentry-mac.app $out/Applications
|
2016-01-09 02:06:24 +01:00
|
|
|
'';
|
|
|
|
|
2016-06-17 11:27:59 +02:00
|
|
|
passthru = {
|
|
|
|
binaryPath = "Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac";
|
|
|
|
};
|
|
|
|
|
2016-01-09 02:06:24 +01:00
|
|
|
meta = {
|
|
|
|
description = "Pinentry for GPG on Mac";
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/GPGTools/pinentry-mac;
|
2016-01-09 02:06:24 +01:00
|
|
|
platforms = stdenv.lib.platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|