datamash: 1.0.6 -> 1.0.7

This commit is contained in:
Pascal Wittmann 2016-03-20 13:23:11 +01:00
parent 6ea546e3b9
commit 88a62b3aea

View file

@ -1,18 +1,20 @@
{stdenv, fetchurl}:
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "datamash-${version}";
version = "1.0.6";
version = "1.0.7";
src = fetchurl {
url = "http://ftp.gnu.org/gnu/datamash/${name}.tar.gz";
sha256 = "0154c25c45b5506b6d618ca8e18d0ef093dac47946ac0df464fb21e77b504118";
sha256 = "0y49zaadzirghy4xfajvsv1f5x805cjp61z212ggipx5243302qs";
};
meta = {
description = "GNU datamash";
meta = with stdenv.lib; {
description = "A command-line program which performs basic numeric,textual and statistical operations on input textual data files";
homepage = http://www.gnu.org/software/datamash/;
platforms = stdenv.lib.platforms.all;
license = licenses.gpl3Plus;
platforms = platforms.all;
maintainers = with maintainers; [ pSub ];
};
}