nixpkgs/pkgs/servers/gotty/default.nix

25 lines
623 B
Nix
Raw Normal View History

2016-06-06 00:28:52 +00:00
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
2016-06-03 18:03:09 +00:00
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;
};
}