Unverified Commit add0443e authored by Artturin's avatar Artturin Committed by GitHub
Browse files

so: fix build (#340345)

parents 4697af72 7dac292e
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
}:

let
  inherit (darwin.apple_sdk.frameworks) Security;
  inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
  self = rustPlatform.buildRustPackage {
    pname = "so";
    version = "0.4.10";
@@ -33,7 +33,9 @@ let
      [ openssl ]
      ++ lib.optionals stdenv.isDarwin [
        libiconv
        CoreServices
        Security
        SystemConfiguration
      ];

    strictDeps = true;
@@ -56,7 +58,10 @@ let
      changelog = "https://github.com/samtay/so/blob/main/CHANGELOG.md";
      mainProgram = "so";
      license = lib.licenses.mit;
      maintainers = with lib.maintainers; [ AndersonTorres ];
      maintainers = with lib.maintainers; [
        AndersonTorres
        unsolvedcypher
      ];
    };
  };
in