summary refs log tree commit diff
path: root/pkgs/tools/misc/sta
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2020-01-20 23:59:40 +0100
committerSilvan Mosberger <contact@infinisil.com>2020-01-21 15:30:55 +0100
commitcb8ba82f15e5747adf5eb098460ff3d4c37985c8 (patch)
tree887bcde61ec33e29d1ffd6b0fc79bea9346485a1 /pkgs/tools/misc/sta
parent764aba4c1b7c6461381c0f424fe9ab1951f4c6d3 (diff)
downloadnixpkgs-cb8ba82f15e5747adf5eb098460ff3d4c37985c8.tar
nixpkgs-cb8ba82f15e5747adf5eb098460ff3d4c37985c8.tar.gz
nixpkgs-cb8ba82f15e5747adf5eb098460ff3d4c37985c8.tar.bz2
nixpkgs-cb8ba82f15e5747adf5eb098460ff3d4c37985c8.tar.lz
nixpkgs-cb8ba82f15e5747adf5eb098460ff3d4c37985c8.tar.xz
nixpkgs-cb8ba82f15e5747adf5eb098460ff3d4c37985c8.tar.zst
nixpkgs-cb8ba82f15e5747adf5eb098460ff3d4c37985c8.zip
sta: init at 2016-01-25
Diffstat (limited to 'pkgs/tools/misc/sta')
-rw-r--r--pkgs/tools/misc/sta/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/misc/sta/default.nix b/pkgs/tools/misc/sta/default.nix
new file mode 100644
index 00000000000..aa27ddf0838
--- /dev/null
+++ b/pkgs/tools/misc/sta/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
+stdenv.mkDerivation {
+  pname = "sta";
+  version = "unstable-2016-01-25";
+
+  src = fetchFromGitHub {
+    owner = "simonccarter";
+    repo = "sta";
+    rev = "2aa2a6035dde88b24978b875e4c45e0e296f77ed";
+    sha256 = "05804f106nb89yvdd0csvpd5skwvnr9x4qr3maqzaw0qr055mrsk";
+  };
+
+  buildInputs = [ 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;
+  };
+}