codespelunker: init at 1.0.0

This commit is contained in:
Stanisław Pitucha 2023-06-05 21:11:41 +10:00
parent 4627ee741d
commit d334c136de
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ 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";
};
}

View File

@ -18185,6 +18185,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 { };