summary refs log tree commit diff
path: root/pkgs/servers/gotty/default.nix
blob: 28ca858440b80f0222cf2ccdcaee6619741de066 (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
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "gotty-${version}";
  version = "0.0.10";
  rev = "v${version}";

  goPackagePath = "github.com/yudai/gotty";

  src = fetchFromGitHub {
    inherit rev;
    owner = "yudai";
    repo = "gotty";
    sha256 = "0gvnbr61d5si06ik2j075jg00r9b94ryfgg06nqxkf10dp8lgi09";
  };

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    description = "Share your terminal as a web application";
    homepage = "https://github.com/yudai/gotty";
    maintainers = with maintainers; [ matthiasbeyer ];
    license = licenses.mit;
  };
}