about summary refs log tree commit diff
path: root/pkgs/development/tools/fnm
diff options
context:
space:
mode:
authorKid <44045911+kidonng@users.noreply.github.com>2021-12-05 09:04:28 +0800
committerGitHub <noreply@github.com>2021-12-05 02:04:28 +0100
commitc3a57a62856dce4b5dc9154b2a5c6c3ae5f023d1 (patch)
tree13bcecc7216f6d96076a3e006d9b4c3f76016120 /pkgs/development/tools/fnm
parentd67b1cd1dc5e355dca71b6228cb422bbdebf8f81 (diff)
fnm: 1.27.0 -> 1.28.1 (#147798)
Co-authored-by: Bobby Rong <rjl931189261@126.com>
Diffstat (limited to 'pkgs/development/tools/fnm')
-rw-r--r--pkgs/development/tools/fnm/default.nix18
1 files changed, 13 insertions, 5 deletions
diff --git a/pkgs/development/tools/fnm/default.nix b/pkgs/development/tools/fnm/default.nix
index 4a9c05b4a4e62..d4e4b210ec5ba 100644
--- a/pkgs/development/tools/fnm/default.nix
+++ b/pkgs/development/tools/fnm/default.nix
@@ -1,21 +1,29 @@
-{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, rustPlatform
+, installShellFiles
+, DiskArbitration
+, Foundation
+, Security
+}:
 
 rustPlatform.buildRustPackage rec {
   pname = "fnm";
-  version = "1.27.0";
+  version = "1.28.1";
 
   src = fetchFromGitHub {
     owner = "Schniz";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-4qnisgWhdAWZda8iy9nkph7//bVKJuUeEDS1GaAx+FQ=";
+    sha256 = "sha256-EH3M5wg+BfTZLvch4jL7AGWwywoSxo+8marzdUgAitg=";
   };
 
   nativeBuildInputs = [ installShellFiles ];
 
-  buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+  buildInputs = lib.optionals stdenv.isDarwin [ DiskArbitration Foundation Security ];
 
-  cargoSha256 = "sha256-f3wzuXH2ByXHHOq3zLaMtYm2HJ4BzmZe2e6DQ3V7qVo=";
+  cargoSha256 = "sha256-Mq1SzAZa05tglcwW6fvT1khVwqA3hRzFjouWLNMWgOk=";
 
   doCheck = false;