about summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorYt <raphael@megzari.com>2024-03-06 21:40:59 +0000
committerGitHub <noreply@github.com>2024-03-06 21:40:59 +0000
commit00c4e99e558e8e7c0dae4324cbb9dbadda931ebf (patch)
treec40fcf67f0fa5e011c26b1864506842f953ec418 /pkgs/servers/web-apps
parentc84d41cd07a63f1c9c8261ce3a7539ee6fc62471 (diff)
parent0effc1df9102fc57deecc613cea1fd2aef76473c (diff)
downloadnixlib-00c4e99e558e8e7c0dae4324cbb9dbadda931ebf.tar
nixlib-00c4e99e558e8e7c0dae4324cbb9dbadda931ebf.tar.gz
nixlib-00c4e99e558e8e7c0dae4324cbb9dbadda931ebf.tar.bz2
nixlib-00c4e99e558e8e7c0dae4324cbb9dbadda931ebf.tar.lz
nixlib-00c4e99e558e8e7c0dae4324cbb9dbadda931ebf.tar.xz
nixlib-00c4e99e558e8e7c0dae4324cbb9dbadda931ebf.tar.zst
nixlib-00c4e99e558e8e7c0dae4324cbb9dbadda931ebf.zip
Merge pull request #293608 from 9999years/fix-pict-rs
pict-rs: Mark broken on darwin
Diffstat (limited to 'pkgs/servers/web-apps')
-rw-r--r--pkgs/servers/web-apps/pict-rs/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/servers/web-apps/pict-rs/default.nix b/pkgs/servers/web-apps/pict-rs/default.nix
index 82a701e02167..55437c7926db 100644
--- a/pkgs/servers/web-apps/pict-rs/default.nix
+++ b/pkgs/servers/web-apps/pict-rs/default.nix
@@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec {
   PROTOC_INCLUDE = "${protobuf}/include";
 
   nativeBuildInputs = [ makeWrapper ];
-  buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks ];
+  buildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
 
   postInstall = ''
     wrapProgram "$out/bin/pict-rs" \
@@ -40,6 +40,7 @@ rustPlatform.buildRustPackage rec {
   passthru.tests = { inherit (nixosTests) pict-rs; };
 
   meta = with lib; {
+    broken = stdenv.isDarwin;
     description = "A simple image hosting service";
     homepage = "https://git.asonix.dog/asonix/pict-rs";
     license = with licenses; [ agpl3Plus ];