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