1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "https://codemadness.org/releases/json2tsv/json2tsv-${version}.tar.gz";
9 hash = "sha256-7r5+YoZVivCqDbfFUqTB/x41DrZi7GZRVcJhGZCpw0o=";
13 substituteInPlace jaq --replace "json2tsv" "$out/bin/json2tsv"
16 makeFlags = [ "RANLIB:=$(RANLIB)" ];
18 installFlags = [ "PREFIX=$(out)" ];
21 description = "JSON to TSV converter";
22 homepage = "https://codemadness.org/json2tsv.html";
23 license = licenses.isc;
24 maintainers = with maintainers; [ sikmir ];
25 platforms = platforms.unix;