evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / dy / dyff / package.nix
blob8ee17a2e382deddb35ba5dec53136c67e22f1e67
1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }:
3 buildGoModule rec {
4   pname = "dyff";
5   version = "1.9.0";
7   src = fetchFromGitHub {
8     owner = "homeport";
9     repo = "dyff";
10     rev = "v${version}";
11     sha256 = "sha256-y5gep3v+totupFbsAuGhySUbcESmQeGHWteQFFXj2Kw=";
12   };
14   vendorHash = "sha256-cRPAjFVvjCgT+m8ceAQJt5ZE8ax7jefzdVWPGM45LpY=";
16   subPackages = [
17     "cmd/dyff"
18     "pkg/dyff"
19     "internal/cmd"
20   ];
22   nativeBuildInputs = [ installShellFiles ];
24   # test fails with the injected version
25   postPatch = ''
26     substituteInPlace internal/cmd/cmds_test.go \
27       --replace "version (development)" ${version}
28   '';
30   ldflags = [
31     "-s"
32     "-w"
33     "-X=github.com/homeport/dyff/internal/cmd.version=${version}"
34   ];
36   postInstall = ''
37     installShellCompletion --cmd dyff \
38       --bash <($out/bin/dyff completion bash) \
39       --fish <($out/bin/dyff completion fish) \
40       --zsh <($out/bin/dyff completion zsh)
41   '';
43   meta = with lib; {
44     description = "Diff tool for YAML files, and sometimes JSON";
45     mainProgram = "dyff";
46     longDescription = ''
47       dyff is inspired by the way the old BOSH v1 deployment output reported
48       changes from one version to another by only showing the parts of a YAML
49       file that change.
51       Each difference is referenced by its location in the YAML document by
52       using either the Spruce or go-patch path syntax.
53     '';
54     homepage = "https://github.com/homeport/dyff";
55     license = licenses.mit;
56     maintainers = with maintainers; [ edlimerkaj jceb ];
57   };