rexit: add openssl and pkg-config for linux
This commit is contained in:
parent
48ae3d86b0
commit
d732a74c08
1 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
let
|
||||
inherit (pkgs.stdenv) isDarwin;
|
||||
inherit (pkgs.stdenv) isLinux;
|
||||
in
|
||||
pkgs.rustPlatform.buildRustPackage {
|
||||
pname = "rexit";
|
||||
|
@ -22,6 +23,9 @@ pkgs.rustPlatform.buildRustPackage {
|
|||
CoreFoundation
|
||||
CoreServices
|
||||
Security
|
||||
]) ++ lib.optionals isLinux (with pkgs; [
|
||||
openssl
|
||||
pkg-config
|
||||
]);
|
||||
|
||||
doCheck = false;
|
||||
|
|
Loading…
Reference in a new issue