Skip to content

Commit 7020369

Browse files
committed
Add openssl to shell.nix
1 parent 205d831 commit 7020369

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

shell.nix

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@ let
77
bake = pkgs.callPackage (sources.image-tools + "/image-tools.nix") { };
88
in
99
pkgs.mkShell {
10-
packages = with pkgs; [
10+
packages = [
1111
bake
1212
];
13+
14+
buildInputs = [
15+
# Required for libraries to be discoverable
16+
pkgs.pkg-config
17+
18+
# Required by patchable
19+
pkgs.openssl
20+
];
1321
}

0 commit comments

Comments
 (0)