summary refs log tree commit diff
path: root/pkgs/applications/file-managers/nnn
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2023-08-29 20:15:37 +0400
committerEmery Hemingway <ehmry@posteo.net>2023-09-02 09:27:54 +0200
commitdd822af4232242b719086ec8c4d5ef66e59ed9c6 (patch)
tree0320d2961289bd2a48a3bbc09264fddea043fabb /pkgs/applications/file-managers/nnn
parent89ff0e57e42c18e9378885c3b30e370d789a4fe5 (diff)
nnn: 4.8 → 4.9
Diffstat (limited to 'pkgs/applications/file-managers/nnn')
-rw-r--r--pkgs/applications/file-managers/nnn/default.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/applications/file-managers/nnn/default.nix b/pkgs/applications/file-managers/nnn/default.nix
index eb3e943676e41..6b7e8f9c6421a 100644
--- a/pkgs/applications/file-managers/nnn/default.nix
+++ b/pkgs/applications/file-managers/nnn/default.nix
@@ -24,13 +24,13 @@ assert withEmojis -> (withIcons == false && withNerdIcons == false);
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "nnn";
-  version = "4.8";
+  version = "4.9";
 
   src = fetchFromGitHub {
     owner = "jarun";
     repo = "nnn";
     rev = "v${finalAttrs.version}";
-    hash = "sha256-QbKW2wjhUNej3zoX18LdeUHqjNLYhEKyvPH2MXzp/iQ=";
+    hash = "sha256-g19uI36HyzTF2YUQKFP4DE2ZBsArGryVHhX79Y0XzhU=";
   };
 
   patches = [
@@ -38,11 +38,6 @@ stdenv.mkDerivation (finalAttrs: {
     # By default, nnn expects the macOS default file command, not the one provided by Nix.
     # However, both commands use different arguments to obtain the MIME type.
     ./darwin-fix-file-mime-opts.patch
-    # FIXME: remove for next release
-    (fetchpatch {
-      url = "https://github.com/jarun/nnn/commit/20e944f5e597239ed491c213a634eef3d5be735e.patch";
-      hash = "sha256-RxG3AU8i3lRPCjRVZPnej4m1No/SKtsHwbghj9JQ7RQ=";
-    })
   ];
 
   configFile = lib.optionalString (conf != null) (builtins.toFile "nnn.h" conf);