summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/ya/yaml2json/package.nix
blob: 80e193397c7629379f5acd14a44eb92125857108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  lib,
  buildGoModule,
  fetchFromGitHub,
  versionCheckHook,
  nix-update-script,
}:

buildGoModule (finalAttrs: {
  pname = "yaml2json";
  version = "1.3.5";

  src = fetchFromGitHub {
    owner = "bronze1man";
    repo = "yaml2json";
    tag = "v${finalAttrs.version}";
    hash = "sha256-mIjtR1VsSeUhEgeSKDG0qT0kj+NCqVwn31m300cMDeU=";
  };

  vendorHash = "sha256-g+yaVIx4jxpAQ/+WrGKxhVeliYx7nLQe/zsGpxV4Fn4=";

  subPackages = [ "." ];

  ldflags = [
    "-s"
    "-w"
  ];

  nativeCheckInputs = [ versionCheckHook ];
  doInstallCheck = true;

  passthru.updateScript = nix-update-script { };

  meta = {
    homepage = "https://github.com/bronze1man/yaml2json";
    changelog = "https://github.com/bronze1man/yaml2json/releases/tag/v${finalAttrs.version}";
    description = "Convert yaml to json";
    mainProgram = "yaml2json";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
})