Merge pull request #236073 from viraptor/codespelunker

codespelunker: init at 1.0.0

authored by figsoda and committed by GitHub 9cbc335f 8ae7e589

+27
+25
pkgs/development/tools/codespelunker/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "codespelunker"; 5 + version = "1.0.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "boyter"; 9 + repo = "cs"; 10 + rev = "v${version}"; 11 + hash = "sha256-NN/78paePdvYHQ4J2aQu56PvEciOXY8DxHd4ajfVCFU="; 12 + }; 13 + 14 + vendorHash = null; 15 + 16 + subPackages = [ "." ]; 17 + 18 + meta = with lib; { 19 + description = "A command code search tool"; 20 + homepage = "https://github.com/boyter/cs"; 21 + license = with licenses; [ mit unlicense ]; 22 + maintainers = with maintainers; [ viraptor ]; 23 + mainProgram = "cs"; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 18186 18186 18187 18187 coder = callPackage ../development/tools/coder { }; 18188 18188 18189 + codespelunker = callPackage ../development/tools/codespelunker { }; 18190 + 18189 18191 compile-daemon = callPackage ../development/tools/compile-daemon { }; 18190 18192 18191 18193 complexity = callPackage ../development/tools/misc/complexity { };