Skip to content

Commit c8bdaa8

Browse files
committed
add missing perl fnox openssl dep
1 parent b86d213 commit c8bdaa8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pkgs/fnox/package.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
lib,
3-
stdenv,
43
fetchFromGitHub,
54
rustPlatform,
65
pkg-config,
76
openssl,
7+
perl,
88
}:
99

1010
rustPlatform.buildRustPackage rec {
@@ -20,7 +20,10 @@ rustPlatform.buildRustPackage rec {
2020

2121
cargoHash = "sha256-CG2TFLC+3sJqjmPaAF6bliURSvfmpicL1kTKNxv51hk=";
2222

23-
nativeBuildInputs = [ pkg-config ];
23+
nativeBuildInputs = [
24+
pkg-config
25+
perl
26+
];
2427

2528
buildInputs = [ openssl ];
2629

0 commit comments

Comments
 (0)