Files
nixpkgs/pkgs/by-name/st/sta/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

58 lines
1.3 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
autoreconfHook,
cxxtest,
}:
stdenv.mkDerivation {
pname = "sta";
version = "0-unstable-2021-11-30";
src = fetchFromGitHub {
owner = "simonccarter";
repo = "sta";
rev = "94559e3dfa97d415e3f37b1180b57c17c7222b4f";
sha256 = "sha256-AiygCfBze7J1Emy6mc27Dim34eLR7VId9wodUZapIL4=";
};
strictDeps = true;
nativeBuildInputs = [ autoreconfHook ];
doCheck = true;
nativeCheckInputs = [ cxxtest ];
checkInputs = [ cxxtest ];
checkPhase = ''
runHook preCheck
pushd test
cxxtestgen --error-printer --have-std -o tests.cpp sta_test_1.h sta_test_2.h
${stdenv.cc.targetPrefix}c++ -o tester tests.cpp
./tester
popd
runHook postCheck
'';
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;
mainProgram = "sta";
};
}