Merge pull request #38849 from magnetophon/gotop

gotop: init at 1.2.9
This commit is contained in:
Jörg Thalheim 2018-04-12 22:00:00 +01:00 committed by GitHub
commit 606c9fcdf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gotop-${version}";
version = "1.2.9";
goPackagePath = "github.com/cjbassi/gotop";
src = fetchFromGitHub {
repo = "gotop";
owner = "cjbassi";
rev = version;
sha256 = "07s2f04yhc79vqr1gdh2v974kpn7flp4slnp99mavpa331lv9q8a";
};
meta = with stdenv.lib; {
description = "A terminal based graphical activity monitor inspired by gtop and vtop";
homepage = https://github.com/cjbassi/gotop;
license = licenses.agpl3;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
};
}

View file

@ -13763,6 +13763,8 @@ with pkgs;
gotools = callPackage ../development/tools/gotools { }; gotools = callPackage ../development/tools/gotools { };
gotop = callPackage ../tools/system/gotop { };
gomodifytags = callPackage ../development/tools/gomodifytags { }; gomodifytags = callPackage ../development/tools/gomodifytags { };
go-langserver = callPackage ../development/tools/go-langserver { }; go-langserver = callPackage ../development/tools/go-langserver { };