rainicorn: remove broken package that has been abandoned upstream

The upstream project is dead, with the last commit being in 2016:
https://github.com/RustDT/Rainicorn

This no longer builds in NixPkgs, and has been marked as broken for a very long
time. Since the package is not maintained and is dead upstream, let's delete.
This commit is contained in:
Benjamin Hipple 2020-03-09 17:57:39 -04:00 committed by Alyssa Ross
parent af048e2344
commit cd8c987fbc
2 changed files with 0 additions and 29 deletions

View file

@ -1,28 +0,0 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
with rustPlatform;
buildRustPackage rec {
pname = "rainicorn";
version = "1.0.0";
src = fetchFromGitHub {
owner = "RustDT";
repo = "Rainicorn";
rev = "0f8594079a7f302f4940cc4320f5e4f39f95cdc4";
sha256 = "07vh4g120sx569wkzclq91blkkd7q7z582pl8vz0li1l9ij8md01";
};
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
cargoSha256 = "07zsj12g4ff0cdb9pwz302vxvajr8g6nl3bpz4vdyi84csfvmahz";
meta = with stdenv.lib; {
broken = true;
description = "Rust IDEs. parse-analysis";
homepage = https://github.com/RustDT/Rainicorn;
license = with licenses; [ mit asl20 ];
platforms = platforms.all;
};
}

View file

@ -8912,7 +8912,6 @@ in
};
maturin = callPackage ../development/tools/rust/maturin { };
rainicorn = callPackage ../development/tools/rust/rainicorn { };
inherit (rustPackages) rls;
rustfmt = rustPackages.rustfmt;
rustracer = callPackage ../development/tools/rust/racer {