jd: init at 0.3.1
This commit is contained in:
parent
ae953c22ed
commit
fbce96014f
2 changed files with 23 additions and 0 deletions
21
pkgs/development/tools/jd/default.nix
Normal file
21
pkgs/development/tools/jd/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, buildGoPackage, fetchgit }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "jd-${version}";
|
||||
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 stdenv.lib; {
|
||||
description = "Interactive JSON Editor";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.np ];
|
||||
};
|
||||
}
|
|
@ -2562,6 +2562,8 @@ with pkgs;
|
|||
|
||||
jade = callPackage ../tools/text/sgml/jade { };
|
||||
|
||||
jd = callPackage ../development/tools/jd { };
|
||||
|
||||
jd-gui = callPackage_i686 ../tools/security/jd-gui { };
|
||||
|
||||
jdiskreport = callPackage ../tools/misc/jdiskreport { };
|
||||
|
|
Loading…
Reference in a new issue