Unverified Commit 9cbc335f authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #236073 from viraptor/codespelunker

codespelunker: init at 1.0.0
parents 8ae7e589 d334c136
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "codespelunker";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "boyter";
    repo = "cs";
    rev = "v${version}";
    hash = "sha256-NN/78paePdvYHQ4J2aQu56PvEciOXY8DxHd4ajfVCFU=";
  };

  vendorHash = null;

  subPackages = [ "." ];

  meta = with lib; {
    description = "A command code search tool";
    homepage = "https://github.com/boyter/cs";
    license = with licenses; [ mit unlicense ];
    maintainers = with maintainers; [ viraptor ];
    mainProgram = "cs";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -18186,6 +18186,8 @@ with pkgs;
  coder = callPackage ../development/tools/coder { };
  codespelunker = callPackage ../development/tools/codespelunker { };
  compile-daemon = callPackage ../development/tools/compile-daemon { };
  complexity = callPackage ../development/tools/misc/complexity { };