linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / datamash / default.nix
blob25f814e5f3c890f18876f981f2dbf6984574fc16
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "datamash";
5   version = "1.7";
7   src = fetchurl {
8     url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
9     sha256 = "1cxdlhgz3wzjqlq8bgwad93fgqymk2abbldfzw1ffnhcp4mmjjjp";
10   };
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   };