Merge pull request #148528 from prusnak/scrypt-darwin

scrypt: fix build on aarch64-darwin
This commit is contained in:
Pavol Rusnak 2021-12-04 01:41:04 +01:00 committed by GitHub
commit a2a684ac13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";