2021-06-01 10:57:12 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-06-01 10:57:12 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "gotty";
|
2022-09-09 14:08:57 +00:00
|
|
|
version = "1.5.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-06-01 10:57:12 +00:00
|
|
|
owner = "sorenisanerd";
|
2020-04-24 23:36:52 +00:00
|
|
|
repo = "gotty";
|
2021-06-01 10:57:12 +00:00
|
|
|
rev = "v${version}";
|
2022-09-09 14:08:57 +00:00
|
|
|
sha256 = "sha256-VSu0ASnLmRzOGOEKqb/zB43+HxEwMpKLpbdbWY5QrEk=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
vendorHash = "sha256-XtqIiREtKg0LRnwOg8UyYrWUWJNQbCJUw+nVvaiN3GQ=";
|
2021-06-01 10:57:12 +00:00
|
|
|
|
|
|
|
# upstream did not update the tests, so they are broken now
|
|
|
|
# https://github.com/sorenisanerd/gotty/issues/13
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Share your terminal as a web application";
|
2021-06-01 10:57:12 +00:00
|
|
|
homepage = "https://github.com/sorenisanerd/gotty";
|
|
|
|
maintainers = with maintainers; [ prusnak ];
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|