summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/da/datamash/package.nix
blob: 1a30f828c1307c5231b37c15170e09fac37a6ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  stdenv,
  fetchurl,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "datamash";
  version = "1.9";

  src = fetchurl {
    url = "mirror://gnu/datamash/datamash-${finalAttrs.version}.tar.gz";
    sha256 = "sha256-84Lr2gNlDdZ5Fh91j5wKbMkpMhNDjUp3qO2jJarLh9I=";
  };

  meta = {
    description = "Command-line program which performs basic numeric,textual and statistical operations on input textual data files";
    homepage = "https://www.gnu.org/software/datamash/";
    license = lib.licenses.gpl3Plus;
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ pSub ];
  };

})