Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
738 B
Nix
32 lines
738 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gotty";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sorenisanerd";
|
|
repo = "gotty";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9J+8NZmdYg4mE8Jgs2bxcwcPyh4sVcOBYPnulVENdy0=";
|
|
};
|
|
|
|
vendorHash = "sha256-OcBwkA28k54rSZP66L+wdkiWPvUv7Z9pTlEK7/LXjBM=";
|
|
|
|
# upstream did not update the tests, so they are broken now
|
|
# https://github.com/sorenisanerd/gotty/issues/13
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Share your terminal as a web application";
|
|
mainProgram = "gotty";
|
|
homepage = "https://github.com/sorenisanerd/gotty";
|
|
maintainers = with maintainers; [ prusnak ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|