2021-05-29 21:48:50 +01:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2016-06-03 19:03:09 +01:00
|
|
|
|
2021-05-29 21:48:50 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gotty";
|
2022-09-01 12:59:01 +01:00
|
|
|
version = "1.5.0";
|
2016-06-03 19:03:09 +01:00
|
|
|
|
2016-06-06 11:26:56 +01:00
|
|
|
src = fetchFromGitHub {
|
2021-05-29 21:48:50 +01:00
|
|
|
owner = "sorenisanerd";
|
2016-06-06 11:26:56 +01:00
|
|
|
repo = "gotty";
|
2021-05-29 21:48:50 +01:00
|
|
|
rev = "v${version}";
|
2022-09-01 12:59:01 +01:00
|
|
|
sha256 = "sha256-VSu0ASnLmRzOGOEKqb/zB43+HxEwMpKLpbdbWY5QrEk=";
|
2016-06-03 19:03:09 +01:00
|
|
|
};
|
|
|
|
|
2022-07-28 07:39:44 +01:00
|
|
|
vendorSha256 = "sha256-XtqIiREtKg0LRnwOg8UyYrWUWJNQbCJUw+nVvaiN3GQ=";
|
2021-05-29 21:48:50 +01:00
|
|
|
|
|
|
|
# upstream did not update the tests, so they are broken now
|
|
|
|
# https://github.com/sorenisanerd/gotty/issues/13
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-03 19:03:09 +01:00
|
|
|
description = "Share your terminal as a web application";
|
2021-05-29 21:48:50 +01:00
|
|
|
homepage = "https://github.com/sorenisanerd/gotty";
|
|
|
|
maintainers = with maintainers; [ prusnak ];
|
2016-06-03 19:03:09 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|