2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-10-08 00:41:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "datamash";
|
2022-07-28 05:24:59 +00:00
|
|
|
version = "1.8";
|
2014-10-08 00:41:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-18 19:11:53 +00:00
|
|
|
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
|
2022-07-28 05:24:59 +00:00
|
|
|
sha256 = "sha256-etl+jH72Ft0DqlvWeuJMSIJy2z59H1d0FhwYt18p9v0=";
|
2014-10-08 00:41:31 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-03-20 12:23:11 +00:00
|
|
|
description = "A command-line program which performs basic numeric,textual and statistical operations on input textual data files";
|
2020-02-25 23:38:27 +00:00
|
|
|
homepage = "https://www.gnu.org/software/datamash/";
|
2016-03-20 12:23:11 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2016-06-23 07:10:54 +00:00
|
|
|
maintainers = with maintainers; [ pSub vrthra ];
|
2014-10-08 00:41:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|