at 23.05-pre 26 lines 669 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "jd-diff-patch"; 5 version = "1.6.1"; 6 7 src = fetchFromGitHub { 8 owner = "josephburnett"; 9 repo = "jd"; 10 rev = "v${version}"; 11 sha256 = "sha256-Ti7eElLplnYGP7v1VuGpyeZ3ZIau6Ffx4ACMBDIBROw="; 12 }; 13 14 # not including web ui 15 excludedPackages = [ "gae" "pack" ]; 16 17 vendorSha256 = null; 18 19 meta = with lib; { 20 description = "Commandline utility and Go library for diffing and patching JSON values"; 21 homepage = "https://github.com/josephburnett/jd"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ bryanasdev000 blaggacao ]; 24 mainProgram = "jd"; 25 }; 26}