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