32 lines
587 B
Nix
32 lines
587 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "codespelunker";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boyter";
|
|
repo = "cs";
|
|
rev = "v${version}";
|
|
hash = "sha256-FZf3aRozpXWTRDrNDRxb1dGBXiLVEYOUd8a/hqzThps=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "Command code search tool";
|
|
homepage = "https://github.com/boyter/cs";
|
|
license = with licenses; [
|
|
mit
|
|
unlicense
|
|
];
|
|
maintainers = with maintainers; [ viraptor ];
|
|
mainProgram = "cs";
|
|
};
|
|
}
|