summary refs log blame commit diff
path: root/pkgs/servers/gotty/default.nix
blob: c826180d7585088b9b13f0dd9bf2f2c8bc41a1e0 (plain) (tree)


























                                                                    
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:

with goPackages;

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