2016-03-20 12:23:11 +00:00
|
|
|
{ stdenv, fetchurl }:
|
2014-10-08 00:41:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "datamash-${version}";
|
2016-03-20 12:23:11 +00:00
|
|
|
version = "1.0.7";
|
2014-10-08 00:41:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://ftp.gnu.org/gnu/datamash/${name}.tar.gz";
|
2016-03-20 12:23:11 +00:00
|
|
|
sha256 = "0y49zaadzirghy4xfajvsv1f5x805cjp61z212ggipx5243302qs";
|
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";
|
2014-10-08 00:41:31 +00:00
|
|
|
homepage = http://www.gnu.org/software/datamash/;
|
2016-03-20 12:23:11 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2014-10-08 00:41:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|