summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-02-12 12:09:18 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-02-12 12:09:18 +0000
commit923b9bdd1de561c99495feca5567d8029c5f5f03 (patch)
tree12a1a0fbaba5c9104f7a7ea0d964302b16f0edd9
parent70aa8d9ec6e80e9d6e5967c552ce665859863303 (diff)
downloadnixpkgs-923b9bdd1de561c99495feca5567d8029c5f5f03.tar
nixpkgs-923b9bdd1de561c99495feca5567d8029c5f5f03.tar.gz
nixpkgs-923b9bdd1de561c99495feca5567d8029c5f5f03.tar.bz2
nixpkgs-923b9bdd1de561c99495feca5567d8029c5f5f03.tar.lz
nixpkgs-923b9bdd1de561c99495feca5567d8029c5f5f03.tar.xz
nixpkgs-923b9bdd1de561c99495feca5567d8029c5f5f03.tar.zst
nixpkgs-923b9bdd1de561c99495feca5567d8029c5f5f03.zip
mcfly: 0.5.12 -> 0.5.13
-rw-r--r--pkgs/tools/misc/mcfly/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/mcfly/default.nix b/pkgs/tools/misc/mcfly/default.nix
index 9046685b278..583e415f093 100644
--- a/pkgs/tools/misc/mcfly/default.nix
+++ b/pkgs/tools/misc/mcfly/default.nix
@@ -2,13 +2,13 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "mcfly";
-  version = "0.5.12";
+  version = "0.5.13";
 
   src = fetchFromGitHub {
     owner = "cantino";
     repo = "mcfly";
     rev = "v${version}";
-    sha256 = "sha256-VguUuQacjdcgrtIHmDdyqh6TuyJxvZCLrn4nxbEtqJc=";
+    sha256 = "sha256-6PGh+CUQH5LEV7/qctn+ihdZgqjt888wknXTfGPS3SI=";
   };
 
   postPatch = ''
@@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
     substituteInPlace mcfly.fish --replace '(command which mcfly)'  '${placeholder "out"}/bin/mcfly'
   '';
 
-  cargoSha256 = "sha256-Lz8uwBsgY9ORRTbEOEB6hh1r/Yb0nAgnYUayLRG4QyI=";
+  cargoSha256 = "sha256-dpDuM+kGuCC2xm5EdV2OoxLNbKgi8wmTGrr8K16AnpM=";
 
   meta = with lib; {
     homepage = "https://github.com/cantino/mcfly";