about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-03-09 17:57:39 -0400
committerAlyssa Ross <hi@alyssa.is>2020-03-11 23:51:41 +0000
commitcd8c987fbc72beee00cfa0458f272eecfe6991ac (patch)
tree532b245a6fe22fe89131a7b2271ef6b0de9ad4a7 /pkgs/development/tools
parentaf048e2344e872dadb9cd59fe06563a1d9ff7edc (diff)
downloadnixlib-cd8c987fbc72beee00cfa0458f272eecfe6991ac.tar
nixlib-cd8c987fbc72beee00cfa0458f272eecfe6991ac.tar.gz
nixlib-cd8c987fbc72beee00cfa0458f272eecfe6991ac.tar.bz2
nixlib-cd8c987fbc72beee00cfa0458f272eecfe6991ac.tar.lz
nixlib-cd8c987fbc72beee00cfa0458f272eecfe6991ac.tar.xz
nixlib-cd8c987fbc72beee00cfa0458f272eecfe6991ac.tar.zst
nixlib-cd8c987fbc72beee00cfa0458f272eecfe6991ac.zip
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.
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/rust/rainicorn/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/tools/rust/rainicorn/default.nix b/pkgs/development/tools/rust/rainicorn/default.nix
deleted file mode 100644
index 94ee2a773f26..000000000000
--- a/pkgs/development/tools/rust/rainicorn/default.nix
+++ /dev/null
@@ -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;
-  };
-}