nixpkgs/pkgs/servers/gotty/default.nix

24 lines
558 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-06-03 18:03:09 +00:00
buildGoPackage rec {
pname = "gotty";
2019-11-29 00:20:58 +00:00
version = "2.0.0-alpha.3";
2016-06-03 18:03:09 +00:00
rev = "v${version}";
goPackagePath = "github.com/yudai/gotty";
src = fetchFromGitHub {
2016-06-03 18:03:09 +00:00
inherit rev;
owner = "yudai";
repo = "gotty";
2019-11-29 00:20:58 +00:00
sha256 = "1vhhs7d4k1vpkf2k69ai2r3bp3zwnwa8l9q7vza0rck69g4nmz7a";
2016-06-03 18:03:09 +00:00
};
meta = with stdenv.lib; {
description = "Share your terminal as a web application";
homepage = "https://github.com/yudai/gotty";
maintainers = with maintainers; [ ];
2016-06-03 18:03:09 +00:00
license = licenses.mit;
};
}