jd-diff-patch: init at 1.4.0
This commit is contained in:
parent
5627b8ae5b
commit
ea4524e6cc
2 changed files with 29 additions and 0 deletions
27
pkgs/development/tools/jd-diff-patch/default.nix
Normal file
27
pkgs/development/tools/jd-diff-patch/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue