summary refs log tree commit diff
path: root/pkgs/applications/file-managers
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-08-25 10:03:42 -0400
committerfigsoda <figsoda@pm.me>2023-08-25 10:03:42 -0400
commit962be2555881273e3f27edc9b2ba6fc216eac01f (patch)
tree161f572fd47ce697a49dc83492481d964a952296 /pkgs/applications/file-managers
parentf91bdefdc425567347e4024ebdfa4303498fb868 (diff)
felix-fm: 2.8.0 -> 2.8.1
Diff: https://github.com/kyoheiu/felix/compare/v2.8.0...v2.8.1

Changelog: https://github.com/kyoheiu/felix/blob/v2.8.1/CHANGELOG.md
Diffstat (limited to 'pkgs/applications/file-managers')
-rw-r--r--pkgs/applications/file-managers/felix-fm/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/applications/file-managers/felix-fm/default.nix b/pkgs/applications/file-managers/felix-fm/default.nix
index 10d5193893cb8..b0b7c34127b38 100644
--- a/pkgs/applications/file-managers/felix-fm/default.nix
+++ b/pkgs/applications/file-managers/felix-fm/default.nix
@@ -9,16 +9,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "felix";
-  version = "2.8.0";
+  version = "2.8.1";
 
   src = fetchFromGitHub {
     owner = "kyoheiu";
     repo = "felix";
     rev = "v${version}";
-    hash = "sha256-d01AbHAIelwjVnVX5hn4QY0sp9n9Ez4ImYqNO/RBmEU=";
+    hash = "sha256-RDCX5+Viq/VRb0SXUYxCtWF+aVahI5WGhp9/Vn+uHqI=";
   };
 
-  cargoHash = "sha256-n8cVdGvh3/lQ6pF0ukxsog+XpIdpjuxGcgkDkM/3IFk=";
+  cargoHash = "sha256-kgI+afly+/Ag0witToM95L9b3yQXP5Gskwl4Lf4SusY=";
 
   nativeBuildInputs = [ pkg-config ];
 
@@ -37,6 +37,11 @@ rustPlatform.buildRustPackage rec {
     "--skip=state::tests::test_has_write_permission"
   ];
 
+  # Cargo.lock is outdated
+  postConfigure = ''
+    cargo metadata --offline
+  '';
+
   meta = with lib; {
     description = "A tui file manager with vim-like key mapping";
     homepage = "https://github.com/kyoheiu/felix";