Merge pull request #12255 from svend/pinentry-mac

pinentry-mac: init at 0.9.4

+28
+26
pkgs/tools/security/pinentry-mac/default.nix
···
··· 1 + { fetchurl, stdenv }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "pinentry-mac-0.9.4"; 5 + 6 + src = fetchurl { 7 + url = "https://github.com/GPGTools/pinentry-mac/archive/v0.9.4.tar.gz"; 8 + sha256 = "037ebb010377d3a3879ae2a832cefc4513f5c397d7d887d7b86b4e5d9a628271"; 9 + }; 10 + 11 + postPatch = '' 12 + substituteInPlace ./Makefile --replace "xcodebuild" "/usr/bin/xcodebuild" 13 + ''; 14 + 15 + installPhase = '' 16 + mkdir -p $out/Applications 17 + mv build/Release/pinentry-mac.app $out/Applications 18 + ''; 19 + 20 + meta = { 21 + description = "Pinentry for GPG on Mac"; 22 + license = stdenv.lib.licenses.gpl2Plus; 23 + homepage = "https://github.com/GPGTools/pinentry-mac"; 24 + platforms = stdenv.lib.platforms.darwin; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 2741 libcap = if stdenv.isDarwin then null else libcap; 2742 }; 2743 2744 pingtcp = callPackage ../tools/networking/pingtcp { }; 2745 2746 pius = callPackage ../tools/security/pius { };
··· 2741 libcap = if stdenv.isDarwin then null else libcap; 2742 }; 2743 2744 + pinentry_mac = callPackage ../tools/security/pinentry-mac { }; 2745 + 2746 pingtcp = callPackage ../tools/networking/pingtcp { }; 2747 2748 pius = callPackage ../tools/security/pius { };