2016-03-20 13:23:11 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2014-10-08 02:41:31 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "datamash-${version}";
|
2017-01-21 23:19:32 +01:00
|
|
|
version = "1.1.1";
|
2014-10-08 02:41:31 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-06-23 09:10:54 +02:00
|
|
|
url = "mirror://gnu/datamash/${name}.tar.gz";
|
2017-01-21 23:19:32 +01:00
|
|
|
sha256 = "06w0pc828qsabmrlh7bc2zwc823xzxy89paaf37f6bipsyrij222";
|
2014-10-08 02:41:31 +02: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";
|
2014-10-08 02:41:31 +02:00
|
|
|
homepage = http://www.gnu.org/software/datamash/;
|
2016-03-20 13:23:11 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2016-06-23 09:10:54 +02:00
|
|
|
maintainers = with maintainers; [ pSub vrthra ];
|
2014-10-08 02:41:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|