biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / miller / default.nix
blob7947944f6489bd6a2867ad05d4df3697a0915648
1 { lib, fetchFromGitHub, buildGoModule }:
3 buildGoModule rec {
4   pname = "miller";
5   version = "6.13.0";
7   src = fetchFromGitHub {
8     owner = "johnkerl";
9     repo = "miller";
10     rev = "v${version}";
11     sha256 = "sha256-eHiYIw/sQMXLow2Vy4zFTGeON28LmG0pK2Uca4ooInU=";
12   };
14   outputs = [ "out" "man" ];
16   vendorHash = "sha256-oc6Lp4rQ+MLmQDVcuNJ3CqYH277Vuuwu4zSSO2ICXsw=";
18   postInstall = ''
19     mkdir -p $man/share/man/man1
20     mv ./man/mlr.1 $man/share/man/man1
21   '';
23   subPackages = [ "cmd/mlr" ];
25   meta = with lib; {
26     description = "Like awk, sed, cut, join, and sort for data formats such as CSV, TSV, JSON, JSON Lines, and positionally-indexed";
27     homepage    = "https://github.com/johnkerl/miller";
28     license     = licenses.bsd2;
29     maintainers = with maintainers; [ mstarzyk ];
30     mainProgram = "mlr";
31     platforms   = platforms.all;
32   };