mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #236073 from viraptor/codespelunker
codespelunker: init at 1.0.0
This commit is contained in:
commit
9cbc335ff6
2 changed files with 27 additions and 0 deletions
25
pkgs/development/tools/codespelunker/default.nix
Normal file
25
pkgs/development/tools/codespelunker/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue