Unverified Commit 1b277880 authored by Pui Yong Qing's avatar Pui Yong Qing
Browse files

poop: adopt by puiyq

parent b9491974
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -5,14 +5,14 @@
  zig_0_13,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "poop";
  version = "0.5.0";

  src = fetchFromGitHub {
    owner = "andrewrk";
    repo = "poop";
    rev = version;
    tag = finalAttrs.version;
    hash = "sha256-zrqR/TTELhsBIX42PysFsHPRs8Lx/zHcmi+VMDw1SdQ=";
  };

@@ -20,13 +20,13 @@ stdenv.mkDerivation rec {
    zig_0_13.hook
  ];

  meta = with lib; {
  meta = {
    description = "Compare the performance of multiple commands with a colorful terminal user interface";
    homepage = "https://github.com/andrewrk/poop";
    changelog = "https://github.com/andrewrk/poop/releases/tag/${src.rev}";
    license = licenses.mit;
    maintainers = [ ];
    platforms = platforms.linux;
    changelog = "https://github.com/andrewrk/poop/releases/tag/${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ puiyq ];
    platforms = lib.platforms.linux;
    mainProgram = "poop";
  };
}
})