Merge pull request #81622 from marsam/update-gotop

gotop: 3.0.0 -> 3.4.5
This commit is contained in:
Mario Rodas 2020-04-03 07:35:41 -05:00 committed by GitHub
commit e5c506af8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,21 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "gotop";
version = "3.0.0";
goPackagePath = "github.com/cjbassi/gotop";
version = "3.5.0";
src = fetchFromGitHub {
owner = "cjbassi";
owner = "xxxserxxx";
repo = pname;
rev = version;
sha256 = "1kndj5qjaqgizjakh642fay2i0i1jmfjlk1p01gnjbh2b0yzvj1r";
rev = "v${version}";
sha256 = "01a2y2604dh2zfy5f2fxr306id0fbq0df91fpz2m8w7rpaszd6xr";
};
modSha256 = "1gbpxq2vyshln97gij5y9qsjyf3mkwfqwwhikc0cck3mnwiv87dd";
meta = with stdenv.lib; {
description = "A terminal based graphical activity monitor inspired by gtop and vtop";
homepage = https://github.com/cjbassi/gotop;
homepage = "https://github.com/xxxserxxx/gotop";
license = licenses.agpl3;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.unix;