nixpkgs/pkgs/servers/gotty/default.nix

26 lines
604 B
Nix
Raw Normal View History

{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
2016-06-03 18:03:09 +00:00
buildGoPackage rec {
name = "gotty-${version}";
version = "0.0.10";
rev = "v${version}";
goPackagePath = "github.com/yudai/gotty";
src = fetchFromGitHub {
2016-06-03 18:03:09 +00:00
inherit rev;
owner = "yudai";
repo = "gotty";
sha256 = "0gvnbr61d5si06ik2j075jg00r9b94ryfgg06nqxkf10dp8lgi09";
2016-06-03 18:03:09 +00:00
};
goDeps = ./deps.nix;
2016-06-03 18:03:09 +00:00
meta = with stdenv.lib; {
description = "Share your terminal as a web application";
homepage = "https://github.com/yudai/gotty";
maintainers = with maintainers; [ matthiasbeyer ];
license = licenses.mit;
};
}