Merge pull request #124898 from prusnak/gotty
gotty: 2.0.0-alpha.3 -> 1.2.0
This commit is contained in:
commit
b5d9ab3f1c
1 changed files with 17 additions and 11 deletions
|
@ -1,23 +1,29 @@
|
||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "gotty";
|
pname = "gotty";
|
||||||
version = "2.0.0-alpha.3";
|
version = "1.2.0";
|
||||||
rev = "v${version}";
|
|
||||||
|
|
||||||
goPackagePath = "github.com/yudai/gotty";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
inherit rev;
|
owner = "sorenisanerd";
|
||||||
owner = "yudai";
|
|
||||||
repo = "gotty";
|
repo = "gotty";
|
||||||
sha256 = "1vhhs7d4k1vpkf2k69ai2r3bp3zwnwa8l9q7vza0rck69g4nmz7a";
|
rev = "v${version}";
|
||||||
|
sha256 = "06ngxnblwkmiln9bxikg9q2wdlh45481pnz87bpsw2r7hc69bv9n";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "0mzf5209r3fzqf9q98j3b2cdzvfa3kg62xn0spx5zr6nabmhaa79";
|
||||||
|
|
||||||
|
# upstream did not update the tests, so they are broken now
|
||||||
|
# https://github.com/sorenisanerd/gotty/issues/13
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Share your terminal as a web application";
|
description = "Share your terminal as a web application";
|
||||||
homepage = "https://github.com/yudai/gotty";
|
homepage = "https://github.com/sorenisanerd/gotty";
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ prusnak ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue