nixpkgs/pkgs/tools/misc/datamash/default.nix

21 lines
593 B
Nix
Raw Normal View History

2016-03-20 12:23:11 +00:00
{ stdenv, fetchurl }:
2014-10-08 01:41:31 +01:00
stdenv.mkDerivation rec {
pname = "datamash";
2020-05-05 00:39:31 +01:00
version = "1.7";
2014-10-08 01:41:31 +01:00
src = fetchurl {
url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
2020-05-05 00:39:31 +01:00
sha256 = "1cxdlhgz3wzjqlq8bgwad93fgqymk2abbldfzw1ffnhcp4mmjjjp";
2014-10-08 01:41:31 +01:00
};
2016-03-20 12:23:11 +00:00
meta = with stdenv.lib; {
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 08:10:54 +01:00
maintainers = with maintainers; [ pSub vrthra ];
2014-10-08 01:41:31 +01:00
};
}