about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/jd/default.nix
blob: 96d2807b9ab9fbbe9ab9698e027d5b86c8652e25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "jd";
  version = "0.3.1";
  rev = "2729b5af166cfd72bd953ef8959b456c4db940fc";

  goPackagePath = "github.com/tidwall/jd";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/tidwall/jd";
    sha256 = "0dj4k38pf80dl77jns29vx2dj265s4ksg2q2s9n240b7b8z8mn5h";
  };

  meta = with lib; {
    description = "Interactive JSON Editor";
    license = licenses.mit;
    maintainers = [ maintainers.np ];
  };
}