nixpkgs/pkgs/by-name/ce/cent/package.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

34 lines
683 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "cent";
version = "1.3.4";
src = fetchFromGitHub {
owner = "xm1k3";
repo = "cent";
rev = "refs/tags/v${version}";
hash = "sha256-xwGmBZgdpyYJ1AKoNUUPEMbU5/racalE4SLrx/E51wM=";
};
vendorHash = "sha256-GMnTIEnkOt0cRN9pZzEuqqtWmO27uVja9VG5UNeCHJo=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Tool to handle Nuclei community templates";
homepage = "https://github.com/xm1k3/cent";
changelog = "https://github.com/xm1k3/cent/releases/tag/v${version}";
license = licenses.asl20;
maintainers = [ ];
mainProgram = "cent";
};
}