nixpkgs/pkgs/development/tools/jd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
479 B
Nix
Raw Normal View History

2022-03-09 09:27:32 +00:00
{ lib, buildGoPackage, fetchFromGitHub }:
2017-06-29 07:50:46 +00:00
buildGoPackage rec {
pname = "jd";
2017-06-29 07:50:46 +00:00
version = "0.3.1";
goPackagePath = "github.com/tidwall/jd";
2022-03-09 09:27:32 +00:00
src = fetchFromGitHub {
owner = "tidwall";
repo = "jd";
rev = "2729b5af166cfd72bd953ef8959b456c4db940fc";
sha256 = "sha256-sNiKPlpnASJs0gKLpyfRxQjZRN9JaCvPoQ0gd9GYRDY=";
2017-06-29 07:50:46 +00:00
};
meta = with lib; {
2017-06-29 07:50:46 +00:00
description = "Interactive JSON Editor";
license = licenses.mit;
maintainers = [ maintainers.np ];
};
}