summary refs log tree commit diff
path: root/pkgs/tools/admin/docker-credential-helpers/default.nix
blob: c32c8834f8dcd654b0c1269d41751af7bf52347f (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{ lib, stdenv, buildGoPackage, fetchFromGitHub, pkg-config, libsecret }:

buildGoPackage rec {
  pname = "docker-credential-helpers";
  version = "0.6.3";

  goPackagePath = "github.com/docker/docker-credential-helpers";

  src = fetchFromGitHub {
    owner = "docker";
    repo = pname;
    rev = "v${version}";
    sha256 = "0xgmwjva3j1s0cqkbajbamj13bgzh5jkf2ir54m9a7w8gjnsh6dx";
  };

  nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ];

  buildInputs = lib.optionals stdenv.isLinux [ libsecret ];

  buildPhase =
    if stdenv.isDarwin
    then ''
      cd go/src/${goPackagePath}
      go build -ldflags -s -o bin/docker-credential-osxkeychain osxkeychain/cmd/main_darwin.go
    ''
    else ''
      cd go/src/${goPackagePath}
      go build -o bin/docker-credential-secretservice secretservice/cmd/main_linux.go
      go build -o bin/docker-credential-pass pass/cmd/main_linux.go
    '';

  installPhase =
    if stdenv.isDarwin
    then ''
      install -Dm755 -t $out/bin bin/docker-credential-osxkeychain
    ''
    else ''
      install -Dm755 -t $out/bin bin/docker-credential-pass
      install -Dm755 -t $out/bin bin/docker-credential-secretservice
    '';

  meta = with lib; {
    description = "Suite of programs to use native stores to keep Docker credentials safe";
    homepage = "https://github.com/docker/docker-credential-helpers";
    license = licenses.mit;
    maintainers = [ maintainers.marsam ];
    platforms = platforms.linux ++ platforms.darwin;
  } // lib.optionalAttrs stdenv.isDarwin {
    mainProgram = "docker-credential-osxkeychain";
  };
}