nixpkgs/pkgs/by-name/co/codespelunker/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
564 B
Nix
Raw Normal View History

2023-06-05 11:11:41 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "codespelunker";
2023-08-23 02:06:29 +00:00
version = "1.4.0";
2023-06-05 11:11:41 +00:00
src = fetchFromGitHub {
owner = "boyter";
repo = "cs";
rev = "v${version}";
2023-08-23 02:06:29 +00:00
hash = "sha256-FZf3aRozpXWTRDrNDRxb1dGBXiLVEYOUd8a/hqzThps=";
2023-06-05 11:11:41 +00:00
};
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";
};
}