nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 20 lines 591 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "datamash"; 5 version = "1.5"; 6 7 src = fetchurl { 8 url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz"; 9 sha256 = "1b91pbdarnfmbhid8aa2f50k0fln8n7pg62782b4y0jlzvaljqi2"; 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 = https://www.gnu.org/software/datamash/; 15 license = licenses.gpl3Plus; 16 platforms = platforms.all; 17 maintainers = with maintainers; [ pSub vrthra ]; 18 }; 19 20}