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

21 lines
601 B
Nix
Raw Normal View History

2016-03-20 12:23:11 +00:00
{ stdenv, fetchurl }:
2014-10-08 00:41:31 +00:00
stdenv.mkDerivation rec {
name = "datamash-${version}";
version = "1.4";
2014-10-08 00:41:31 +00:00
src = fetchurl {
2016-06-23 07:10:54 +00:00
url = "mirror://gnu/datamash/${name}.tar.gz";
sha256 = "fa44dd2d5456bcb94ef49dfc6cfe62c83fd53ac435119a85d34e6812f6e6472a";
2014-10-08 00:41:31 +00: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";
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
};
}