at 18.03-beta 21 lines 504 B view raw
1{ stdenv, buildGoPackage, fetchgit }: 2 3buildGoPackage 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}