about summary refs log tree commit diff
path: root/pkgs/by-name/ni
diff options
context:
space:
mode:
authorFinn Behrens <me@kloenk.de>2023-12-01 19:52:36 +0100
committerembr <git@liclac.eu>2023-12-15 19:08:43 +0100
commit7b971ce7d12291ee25f85f2ad3be5f3d6adcf521 (patch)
tree784f2ce4c53f3d38803515e13a75c1e0c0903a19 /pkgs/by-name/ni
parent237c0484fe86d147654e54c1a264fad6d578c5c9 (diff)
downloadnixlib-7b971ce7d12291ee25f85f2ad3be5f3d6adcf521.tar
nixlib-7b971ce7d12291ee25f85f2ad3be5f3d6adcf521.tar.gz
nixlib-7b971ce7d12291ee25f85f2ad3be5f3d6adcf521.tar.bz2
nixlib-7b971ce7d12291ee25f85f2ad3be5f3d6adcf521.tar.lz
nixlib-7b971ce7d12291ee25f85f2ad3be5f3d6adcf521.tar.xz
nixlib-7b971ce7d12291ee25f85f2ad3be5f3d6adcf521.tar.zst
nixlib-7b971ce7d12291ee25f85f2ad3be5f3d6adcf521.zip
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 <me@kloenk.de>
Diffstat (limited to 'pkgs/by-name/ni')
-rw-r--r--pkgs/by-name/ni/nix-web/package.nix6
1 files changed, 5 insertions, 1 deletions
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";
   };