From ca015df0c3a5dc65a4037a27cecfd2bc496ad898 Mon Sep 17 00:00:00 2001 From: Benjamin Hipple Date: Sun, 8 Mar 2020 23:17:17 -0400 Subject: [PATCH] staccato: remove broken and unmaintained package This package was added in 2017, then never updated, and no longer builds. While upstream does have a newer release at version 0.1.9, this doesn't build with the latest rustc either, and was last released in 2018: https://github.com/tshlabs/staccato/releases Since the upstream package just has 1 contributor, and the package in Nix has no maintainer and is not building or updated, let's just delete it. --- pkgs/tools/text/staccato/default.nix | 33 ---------------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 35 deletions(-) delete mode 100644 pkgs/tools/text/staccato/default.nix diff --git a/pkgs/tools/text/staccato/default.nix b/pkgs/tools/text/staccato/default.nix deleted file mode 100644 index cbd53c89823349..00000000000000 --- a/pkgs/tools/text/staccato/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ stdenv, fetchFromGitHub, rustPlatform }: - -rustPlatform.buildRustPackage rec { - pname = "staccato"; - version = "0.1.6"; - - src = fetchFromGitHub { - owner = "tshlabs"; - repo = "staccato"; - rev = version; - sha256 = "1zbd1gx0ik2r7bavcid776j37g6rzd3f6cs94kq1qar4gyf1gqjm"; - }; - - # Delete this on next update; see #79975 for details - legacyCargoFetcher = true; - - cargoSha256 = "0h1822hba6lpv14y6hgn8qgh7p812b3kkf592ggr6yjlhqfh37n7"; - - meta = { - broken = true; - description = "A command line program that lets you compute statistics from values from a file or standard input"; - longDescription = '' - Staccato (`st` for short) is a command line program that lets you - compute statistics from values from a file or standard input. It - computes things about the stream of numbers like min, max, mean, median, - and standard deviation. It can also compute these things about some - subset of the stream, for example the lower 95% of values. - ''; - homepage = https://docs.rs/crate/staccato; - license = stdenv.lib.licenses.gpl3; - platforms = stdenv.lib.platforms.all; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 21d74996dc8dbe..2383316fa4438b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2104,8 +2104,6 @@ in socklog = callPackage ../tools/system/socklog { }; - staccato = callPackage ../tools/text/staccato { }; - stagit = callPackage ../development/tools/stagit { }; step-ca = callPackage ../tools/security/step-ca { };