summary refs log tree commit diff
path: root/pkgs/servers/gotty/default.nix
blob: 5716779fb9a331f5de90849e0a6918f0e4a8f8d9 (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
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

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

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

  src = fetchgit {
    inherit rev;
    url = "https://github.com/yudai/gotty";
    sha256 = "1jc620j4y2r8706r6qn7g2nghiidaaj7f8m2vjgq2gwv288qjafd";
  };

  goDeps = ./deps.json;

  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;
  };
}