Commit ea4524e6 authored by Bryan A. S's avatar Bryan A. S Committed by Jonathan Ringer
Browse files

jd-diff-patch: init at 1.4.0

parent 5627b8ae
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "jd-diff-patch";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner  = "josephburnett";
    repo   = "jd";
    rev    = "v${version}";
    sha256 = "sha256-OAy4IS2JZYYPeJITNHZKiYEapzGqqYPDBCLflLYetzg=";
  };

  # not including web ui
  excludedPackages = [ "gae" "pack" ];

  vendorSha256 = "sha256-w3mFra7Je+8qIDQMSyUYucoLZ6GtrZmr56O6xmihIYc=";

  doCheck = true;

  meta = with lib; {
    description = "Commandline utility and Go library for diffing and patching JSON values";
    homepage = "https://github.com/josephburnett/jd";
    license = licenses.mit;
    maintainers = with maintainers; [ bryanasdev000 blaggacao ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -6368,6 +6368,8 @@ with pkgs;
  jd = callPackage ../development/tools/jd { };
  jd-diff-patch = callPackage ../development/tools/jd-diff-patch { };
  jd-gui = callPackage ../tools/security/jd-gui { };
  jdiskreport = callPackage ../tools/misc/jdiskreport { };