about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-03-07 15:28:56 -0500
committerBenjamin Hipple <bhipple@protonmail.com>2020-03-07 15:28:56 -0500
commita2514c22a8054b85b5123bf5a35891e7c2177ca4 (patch)
tree5f746190580a3beeeb3571d0c59e409ff119687b /pkgs/applications/version-management
parent01db31c4d7fac7885940d50957743f23758a0494 (diff)
downloadnixlib-a2514c22a8054b85b5123bf5a35891e7c2177ca4.tar
nixlib-a2514c22a8054b85b5123bf5a35891e7c2177ca4.tar.gz
nixlib-a2514c22a8054b85b5123bf5a35891e7c2177ca4.tar.bz2
nixlib-a2514c22a8054b85b5123bf5a35891e7c2177ca4.tar.lz
nixlib-a2514c22a8054b85b5123bf5a35891e7c2177ca4.tar.xz
nixlib-a2514c22a8054b85b5123bf5a35891e7c2177ca4.tar.zst
nixlib-a2514c22a8054b85b5123bf5a35891e7c2177ca4.zip
sit: mark as broken
Dependencies in the Cargo.lock fail to build due to mutable self borrows.
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/sit/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/version-management/sit/default.nix b/pkgs/applications/version-management/sit/default.nix
index 0a1f4c72da6f..aa2cdfab82ac 100644
--- a/pkgs/applications/version-management/sit/default.nix
+++ b/pkgs/applications/version-management/sit/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, rustPlatform, cmake, libzip, gnupg, 
+{ stdenv, fetchFromGitHub, rustPlatform, cmake, libzip, gnupg,
   # Darwin
   libiconv, CoreFoundation, Security }:
 
@@ -20,10 +20,7 @@ rustPlatform.buildRustPackage rec {
     export HOME=$(mktemp -d)
   '';
 
-  # Delete this on next update; see #79975 for details
-  legacyCargoFetcher = true;
-
-  cargoSha256 = "0kijx7s7zh6yisrsjz213h9x5jx43ixr44vy5rb3wwbn9dgsr528";
+  cargoSha256 = "092yfpr2svp1qy7xis1q0sdkbsjmmswmdwb0rklrc0yhydcsghp9";
 
   meta = with stdenv.lib; {
     description = "Serverless Information Tracker";
@@ -31,5 +28,8 @@ rustPlatform.buildRustPackage rec {
     license = with licenses; [ asl20 /* or */ mit ];
     maintainers = with maintainers; [ dywedir yrashk ];
     platforms = platforms.all;
+    # Upstream has not had a release in several years, and dependencies no
+    # longer compile with the latest Rust compiler.
+    broken = true;
   };
 }