summary refs log tree commit diff
path: root/pkgs/tools/security/pinentry/mac.nix
blob: 4acdd6cb897e4e7a1bd01eed6093fe8e618f2f04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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;
  };
}