depot/third_party/nixpkgs/pkgs/tools/misc/datamash/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

20 lines
588 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "datamash";
version = "1.8";
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
sha256 = "sha256-etl+jH72Ft0DqlvWeuJMSIJy2z59H1d0FhwYt18p9v0=";
};
meta = with lib; {
description = "Command-line program which performs basic numeric,textual and statistical operations on input textual data files";
homepage = "https://www.gnu.org/software/datamash/";
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub vrthra ];
};
}