mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
30 lines
733 B
Nix
30 lines
733 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gotty";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sorenisanerd";
|
|
repo = "gotty";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-VSu0ASnLmRzOGOEKqb/zB43+HxEwMpKLpbdbWY5QrEk=";
|
|
};
|
|
|
|
vendorHash = "sha256-XtqIiREtKg0LRnwOg8UyYrWUWJNQbCJUw+nVvaiN3GQ=";
|
|
|
|
# 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;
|
|
};
|
|
}
|