depot/third_party/nixpkgs/pkgs/tools/misc/datamash/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

20 lines
590 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 = "A 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 ];
};
}