mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
26 lines
566 B
Nix
26 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";
|
|
};
|
|
}
|