From d732a74c08880af3d73306432870436fad4cec5f Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Fri, 18 Aug 2023 12:42:10 +0200 Subject: [PATCH] rexit: add openssl and pkg-config for linux --- packages/rexit.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/rexit.nix b/packages/rexit.nix index 9446880..b8047e3 100644 --- a/packages/rexit.nix +++ b/packages/rexit.nix @@ -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;