nixpkgs/pkgs/tools/misc/sta/default.nix
Silvan Mosberger ea5dfeab93 treewide: Drop infinisil as maintainer from most packages
I'm not going anywhere, I'm focusing my energy on other issues, and
getting pinged as a maintainer for packages is a bit distracting (also
I'm not using most of these packages anyways!)
2024-04-09 21:43:39 +02:00

37 lines
1021 B
Nix

{ 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 = [ ];
platforms = platforms.all;
badPlatforms = platforms.darwin;
mainProgram = "sta";
};
}