5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
25 lines
566 B
Nix
25 lines
566 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "codespelunker";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boyter";
|
|
repo = "cs";
|
|
rev = "v${version}";
|
|
hash = "sha256-9Od2SOUYf4ij+UWOX/1kWS+qUZRje1wjzSAzBc5qk8s=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|