Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

jd: init at 0.3.1

+23
+21
pkgs/development/tools/jd/default.nix
··· 1 + { stdenv, buildGoPackage, fetchgit }: 2 + 3 + buildGoPackage rec { 4 + name = "jd-${version}"; 5 + version = "0.3.1"; 6 + rev = "2729b5af166cfd72bd953ef8959b456c4db940fc"; 7 + 8 + goPackagePath = "github.com/tidwall/jd"; 9 + 10 + src = fetchgit { 11 + inherit rev; 12 + url = "https://github.com/tidwall/jd"; 13 + sha256 = "0dj4k38pf80dl77jns29vx2dj265s4ksg2q2s9n240b7b8z8mn5h"; 14 + }; 15 + 16 + meta = with stdenv.lib; { 17 + description = "Interactive JSON Editor"; 18 + license = licenses.mit; 19 + maintainers = [ maintainers.np ]; 20 + }; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 2562 2562 2563 2563 jade = callPackage ../tools/text/sgml/jade { }; 2564 2564 2565 + jd = callPackage ../development/tools/jd { }; 2566 + 2565 2567 jd-gui = callPackage_i686 ../tools/security/jd-gui { }; 2566 2568 2567 2569 jdiskreport = callPackage ../tools/misc/jdiskreport { };