Skip to content

Commit

Permalink
codespelunker: init at 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
viraptor committed Jun 5, 2023
1 parent 4627ee7 commit d334c13
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/development/tools/codespelunker/default.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit d334c13

Please sign in to comment.