at 18.09-beta 25 lines 583 B view raw
1{ stdenv, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 name = "gotty-${version}"; 5 version = "0.0.13"; 6 rev = "v${version}"; 7 8 goPackagePath = "github.com/yudai/gotty"; 9 10 src = fetchFromGitHub { 11 inherit rev; 12 owner = "yudai"; 13 repo = "gotty"; 14 sha256 = "1hsfjyjjzr1zc9m8bnhid1ag6ipcbx59111y9p7k8az8jiyr112g"; 15 }; 16 17 goDeps = ./deps.nix; 18 19 meta = with stdenv.lib; { 20 description = "Share your terminal as a web application"; 21 homepage = https://github.com/yudai/gotty; 22 maintainers = with maintainers; [ ]; 23 license = licenses.mit; 24 }; 25}