nixpkgs/pkgs/tools/system/ctop/default.nix

24 lines
647 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2017-05-30 11:10:45 +00:00
2019-06-18 21:20:00 +00:00
buildGoModule rec {
pname = "ctop";
version = "0.7.3";
2017-05-30 11:10:45 +00:00
src = fetchFromGitHub {
owner = "bcicen";
2019-06-18 21:20:00 +00:00
repo = pname;
rev = "v${version}";
sha256 = "0y72l65xgfqrgghzbm1zcy776l5m31z0gn6vfr689zyi3k3f4kh8";
2017-05-30 11:10:45 +00:00
};
vendorSha256 = "1x4li44vg0l1x205v9a971cgphplxhsrn59q97gmj9cfy4m7jdfw";
2019-09-10 19:23:53 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version} -X main.build=v${version}" ];
2017-05-30 11:10:45 +00:00
meta = with lib; {
2019-06-18 21:20:00 +00:00
description = "Top-like interface for container metrics";
homepage = "https://ctop.sh/";
2017-05-30 11:10:45 +00:00
license = licenses.mit;
2019-06-18 21:20:00 +00:00
maintainers = with maintainers; [ apeyroux marsam ];
2017-05-30 11:10:45 +00:00
};
}