at 16.09-beta 20 lines 590 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "datamash-${version}"; 5 version = "1.1.0"; 6 7 src = fetchurl { 8 url = "mirror://gnu/datamash/${name}.tar.gz"; 9 sha256 = "1c2bj0jrm4fxkf0ykxkzgyk1l9s0idqm8rbzmk3n9pgldb4arrd9"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "A command-line program which performs basic numeric,textual and statistical operations on input textual data files"; 14 homepage = http://www.gnu.org/software/datamash/; 15 license = licenses.gpl3Plus; 16 platforms = platforms.all; 17 maintainers = with maintainers; [ pSub vrthra ]; 18 }; 19 20}