0534ceac81
Not every package that needs xcbuild will want to use its build phase. I have moved the xcbuild setup hook to the new attribute xcbuildHook. This means that dontUseXcbuild is no longer needed. If you just need to call xcbuild on its own you can just refer to xcbuild.
32 lines
856 B
Nix
32 lines
856 B
Nix
{ fetchurl, stdenv, fetchFromGitHub, xcbuildHook, libiconv, Cocoa, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pinentry-mac-0.9.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matthewbauer";
|
|
repo = "pinentry-mac";
|
|
rev = "6dfef256c8ea32d642fea847f27d800f024cf51e";
|
|
sha256 = "0g75302697gqcxyf2hyqzvcbd5pyss1bl2xvfd40wqav7dlyvj83";
|
|
};
|
|
|
|
nativeBuildInputs = [ xcbuildHook ];
|
|
buildInputs = [ libiconv Cocoa ncurses ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/Applications
|
|
mv Products/Release/pinentry-mac.app $out/Applications
|
|
'';
|
|
|
|
passthru = {
|
|
binaryPath = "Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac";
|
|
};
|
|
|
|
meta = {
|
|
description = "Pinentry for GPG on Mac";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
homepage = https://github.com/GPGTools/pinentry-mac;
|
|
platforms = stdenv.lib.platforms.darwin;
|
|
};
|
|
}
|