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