From 7b971ce7d12291ee25f85f2ad3be5f3d6adcf521 Mon Sep 17 00:00:00 2001 From: Finn Behrens Date: Fri, 1 Dec 2023 19:52:36 +0100 Subject: [PATCH] nix-web: Build on platforms.unix, depend on OpenSSL if not on Darwin This matches the `platform` setting for nix itself, as much as I don't have a good way to test this on anything but Linux right now. Co-Authored-By: Finn Behrens --- pkgs/by-name/ni/nix-web/package.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ni/nix-web/package.nix b/pkgs/by-name/ni/nix-web/package.nix index 0058073d12e4..bc79ba376e1e 100644 --- a/pkgs/by-name/ni/nix-web/package.nix +++ b/pkgs/by-name/ni/nix-web/package.nix @@ -1,10 +1,12 @@ { lib +, stdenv , rustPlatform , fetchFromGitea , pkg-config , openssl , nixVersions , nixPackage ? nixVersions.nix_2_17 +, darwin }: let @@ -24,7 +26,8 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-6kcpP/CFiy571B98Y96/cdcClH50gdyPLZ28Npva7B4="; nativeBuildInputs = [ pkg-config ]; - buildInputs = [ openssl ]; + buildInputs = lib.optional (!stdenv.isDarwin) openssl + ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; postPatch = '' substituteInPlace nix-web/nix-web.service \ @@ -43,6 +46,7 @@ rustPlatform.buildRustPackage rec { description = "Web interface for the Nix store"; homepage = "https://codeberg.org/gorgon/gorgon/src/branch/main/nix-web"; license = licenses.eupl12; + platforms = platforms.unix; maintainers = with maintainers; [ embr ]; mainProgram = "nix-web"; };