mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
7fd359f2f9
Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_NSArray", referenced from: objc-class-ref in GPGDefaults.o "_OBJC_CLASS_$_NSDictionary", referenced from: objc-class-ref in PinentryController.o objc-class-ref in GPGDefaults.o objc-class-ref in KeychainSupport.o "_OBJC_CLASS_$_NSMutableDictionary", referenced from: objc-class-ref in GPGDefaults.o "_OBJC_CLASS_$_NSSet", referenced from: objc-class-ref in GPGDefaults.o "_OBJC_CLASS_$_NSUserDefaults", referenced from: objc-class-ref in GPGDefaults.o ld: symbol(s) not found for architecture x86_64
37 lines
927 B
Nix
37 lines
927 B
Nix
{ stdenv, fetchFromGitHub, xcbuildHook, libiconv, Cocoa, ncurses, cf-private }:
|
|
|
|
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
|
|
# Needed for OBJC_CLASS_$_NSArray symbols.
|
|
cf-private
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|