nixpkgs/pkgs/servers/gotty/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

26 lines
602 B
Nix

{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gotty-${version}";
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; [ matthiasbeyer ];
license = licenses.mit;
};
}