From 9118fde4b08fb822861b2922007628c6d59f2286 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 4 Dec 2021 00:19:23 +0100 Subject: [PATCH] scrypt: fix build on aarch64-darwin util-linux alternative for darwin does not contain `rev` anyway and somehow the tests pass even when it is missing --- pkgs/tools/security/scrypt/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/scrypt/default.nix b/pkgs/tools/security/scrypt/default.nix index 89ff50e0a8a..5a3ab9cb68b 100644 --- a/pkgs/tools/security/scrypt/default.nix +++ b/pkgs/tools/security/scrypt/default.nix @@ -1,4 +1,10 @@ -{ lib, stdenv, fetchurl, openssl, util-linux, getconf }: +{ lib +, stdenv +, fetchurl +, openssl +, getconf +, util-linux +}: stdenv.mkDerivation rec { pname = "scrypt"; @@ -27,7 +33,7 @@ stdenv.mkDerivation rec { doCheck = true; checkTarget = "test"; - checkInputs = [ util-linux ]; + checkInputs = lib.optionals stdenv.isLinux [ util-linux ]; meta = with lib; { description = "Encryption utility";