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
main
Pavol Rusnak 3 years ago
parent 23315789cf
commit 9118fde4b0
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
  1. 10
      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";

Loading…
Cancel
Save