2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-03 20:03:09 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gotty";
|
2019-11-29 01:20:58 +01:00
|
|
|
version = "2.0.0-alpha.3";
|
2016-06-03 20:03:09 +02:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/yudai/gotty";
|
|
|
|
|
2016-06-06 12:26:56 +02:00
|
|
|
src = fetchFromGitHub {
|
2016-06-03 20:03:09 +02:00
|
|
|
inherit rev;
|
2016-06-06 12:26:56 +02:00
|
|
|
owner = "yudai";
|
|
|
|
repo = "gotty";
|
2019-11-29 01:20:58 +01:00
|
|
|
sha256 = "1vhhs7d4k1vpkf2k69ai2r3bp3zwnwa8l9q7vza0rck69g4nmz7a";
|
2016-06-03 20:03:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Share your terminal as a web application";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/yudai/gotty";
|
2018-02-21 14:25:45 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-06-03 20:03:09 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|