Unverified Commit d8d3f029 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

ttop: 1.5.2 -> 1.5.3 (#348356)

parents a3c604d5 95688b93
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
{ lib, buildNimPackage, fetchFromGitHub, testers }:
{
  lib,
  buildNimPackage,
  fetchFromGitHub,
  testers,
}:

buildNimPackage (finalAttrs: {
  pname = "ttop";
  version = "1.5.2";
  version = "1.5.3";

  src = fetchFromGitHub {
    owner = "inv2004";
    repo = "ttop";
    rev = "v${finalAttrs.version}";
    hash = "sha256-/rs5JjTXxptVHXL3fY8qP6Be3r5N871CEbUH7w6zx4A=";
    hash = "sha256-KfPlO0RmahavA3dsxNDozuNOXIRAwDTtT+zFaF6hYd0=";
  };

  lockFile = ./lock.json;
@@ -29,7 +34,10 @@ buildNimPackage (finalAttrs: {
    changelog = "https://github.com/inv2004/ttop/releases/tag/${finalAttrs.src.rev}";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ figsoda sikmir ];
    maintainers = with maintainers; [
      figsoda
      sikmir
    ];
    mainProgram = "ttop";
  };
})