1
0
Fork 0

rexit: add openssl and pkg-config for linux

This commit is contained in:
Daniel Kempkens 2023-08-18 12:42:10 +02:00
parent 48ae3d86b0
commit d732a74c08
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -2,6 +2,7 @@
let let
inherit (pkgs.stdenv) isDarwin; inherit (pkgs.stdenv) isDarwin;
inherit (pkgs.stdenv) isLinux;
in in
pkgs.rustPlatform.buildRustPackage { pkgs.rustPlatform.buildRustPackage {
pname = "rexit"; pname = "rexit";
@ -22,6 +23,9 @@ pkgs.rustPlatform.buildRustPackage {
CoreFoundation CoreFoundation
CoreServices CoreServices
Security Security
]) ++ lib.optionals isLinux (with pkgs; [
openssl
pkg-config
]); ]);
doCheck = false; doCheck = false;