aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/misc/teleconsole/default.nix
blob: b8e984e90c430c34ab765800dd44ca2f4bd8614d (plain)
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
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "teleconsole";
  version = "0.4.0";

  goPackagePath = "github.com/gravitational/teleconsole";

  src = fetchFromGitHub {
    owner = "gravitational";
    repo = "teleconsole";
    rev = version;
    sha256 = "01552422n0bj1iaaw6pvg9l1qr66r69sdsngxbcdjn1xh3mj74sm";
  };

  goDeps = ./deps.nix;

  CGO_ENABLED = 1;
  buildFlags = [ "-ldflags" ];

  meta = with stdenv.lib; {
    homepage = "https://www.teleconsole.com/";
    description = "Share your terminal session with people you trust";
    license = licenses.asl20;
    platforms = platforms.all;
    # Builds for Aarch64 not possible in the current release due to
    # incompatibilities further up the dependency chain.
    # See:
    #  - https://github.com/gravitational/teleport/issues/679
    #  - https://github.com/kr/pty/issues/27
    broken = stdenv.isAarch64;
    maintainers = [ maintainers.kimburgess ];
  };
}