nixpkgs/pkgs/servers/gotty/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

26 lines
573 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "gotty";
version = "0.0.13";
rev = "v${version}";
goPackagePath = "github.com/yudai/gotty";
src = fetchFromGitHub {
inherit rev;
owner = "yudai";
repo = "gotty";
sha256 = "1hsfjyjjzr1zc9m8bnhid1ag6ipcbx59111y9p7k8az8jiyr112g";
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "Share your terminal as a web application";
homepage = https://github.com/yudai/gotty;
maintainers = with maintainers; [ ];
license = licenses.mit;
};
}