tokei: add zlib to checkInputs on Darwin
This commit is contained in:
parent
73f8940410
commit
d1a2cdd322
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, Security }:
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, Security, zlib }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "tokei";
|
pname = "tokei";
|
||||||
|
@ -17,6 +17,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
libiconv Security
|
libiconv Security
|
||||||
];
|
];
|
||||||
|
|
||||||
|
checkInputs = lib.optionals stdenv.isDarwin [ zlib ];
|
||||||
|
|
||||||
# enable all output formats
|
# enable all output formats
|
||||||
buildFeatures = [ "all" ];
|
buildFeatures = [ "all" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue