mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
codespelunker: init at 1.0.0
This commit is contained in:
parent
4627ee741d
commit
d334c136de
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";
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user