about summary refs log tree commit diff
path: root/pkgs/tools/misc/sta/default.nix
blob: 696b79447a752b1eac15f4546dcc1eeecac4d8f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv
, lib
, fetchFromGitHub
, autoreconfHook
}:

stdenv.mkDerivation {
  pname = "sta";
  version = "unstable-2021-11-30";

  src = fetchFromGitHub {
    owner = "simonccarter";
    repo = "sta";
    rev = "94559e3dfa97d415e3f37b1180b57c17c7222b4f";
    sha256 = "sha256-AiygCfBze7J1Emy6mc27Dim34eLR7VId9wodUZapIL4=";
  };

  nativeBuildInputs = [ autoreconfHook ];

  meta = with lib; {
    description = "Simple statistics from the command line interface (CLI), fast";
    longDescription = ''
      This is a lightweight, fast tool for calculating basic descriptive
      statistics from the command line. Inspired by
      https://github.com/nferraz/st, this project differs in that it is written
      in C++, allowing for faster computation of statistics given larger
      non-trivial data sets.
    '';
    license = licenses.mit;
    homepage = "https://github.com/simonccarter/sta";
    maintainers = with maintainers; [ infinisil ];
    platforms = platforms.all;
    badPlatforms = platforms.darwin;
    mainProgram = "sta";
  };
}