evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / go-secdump / package.nix
blob5b92d992048920ac9c82e39e71adda4a68969a8c
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "go-secdump";
9   version = "0.3.0";
11   src = fetchFromGitHub {
12     owner = "jfjallid";
13     repo = "go-secdump";
14     rev = "refs/tags/${version}";
15     hash = "sha256-RdbrxnyP9QKkrWRLxnWljlwjJHbK++f/U0WdyB9XDc0=";
16   };
18   vendorHash = "sha256-RvbK0ps/5Jg/IAk71WGYEcjM6LrbCSkUueSOUFeELis=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   meta = with lib; {
26     description = "Tool to remotely dump secrets from the Windows registry";
27     homepage = "https://github.com/jfjallid/go-secdump";
28     changelog = "https://github.com/jfjallid/go-secdump/releases/tag/${version}";
29     license = licenses.mit;
30     maintainers = with maintainers; [ fab ];
31     mainProgram = "go-secdump";
32     platforms = lib.platforms.linux;
33   };