Commit 5136e375 authored by Viorel-Cătălin Răpițeanu's avatar Viorel-Cătălin Răpițeanu
Browse files

arti: move to by-name

Move the package to the new by-name structure.
parent 19d2ec01
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
, pkg-config
, sqlite
, openssl
, CoreServices
, darwin
}:

rustPlatform.buildRustPackage rec {
@@ -26,8 +26,13 @@ rustPlatform.buildRustPackage rec {
  nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ];

  buildInputs = [ sqlite ]
    ++ lib.optionals stdenv.hostPlatform.isLinux [ openssl ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
    ++ lib.optionals stdenv.isLinux [ openssl ]
    ++ lib.optionals stdenv.isDarwin (
      with darwin.apple_sdk.frameworks;
      [
        CoreServices
      ]
    );

  cargoBuildFlags = [ "--package" "arti" ];

+0 −4
Original line number Diff line number Diff line
@@ -293,10 +293,6 @@ with pkgs;
  ares-rs = callPackage ../tools/security/ares-rs { };
  arti = callPackage ../tools/security/arti {
    inherit (darwin.apple_sdk.frameworks) CoreServices;
  };
  asn1c = callPackage ../development/compilers/asn1c { };
  authz0 = callPackage ../tools/security/authz0 { };