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
|
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;
|
||||||
|
|
Loading…
Reference in a new issue