pkgs/by-name/[ab].+: migrate to new apple sdk (#354097)

authored by

Emily and committed by
GitHub
85f7e662 a0862542

+31 -103
+1 -8
pkgs/by-name/ag/agate/package.nix
··· 4 nixosTests, 5 fetchFromGitHub, 6 rustPlatform, 7 - libiconv, 8 - darwin, 9 openssl, 10 pkg-config, 11 nix-update-script, ··· 26 27 nativeBuildInputs = [ pkg-config ]; 28 29 - buildInputs = 30 - [ openssl ] 31 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 32 - libiconv 33 - darwin.apple_sdk.frameworks.Security 34 - ]; 35 36 doInstallCheck = true; 37 installCheckPhase = ''
··· 4 nixosTests, 5 fetchFromGitHub, 6 rustPlatform, 7 openssl, 8 pkg-config, 9 nix-update-script, ··· 24 25 nativeBuildInputs = [ pkg-config ]; 26 27 + buildInputs = [ openssl ]; 28 29 doInstallCheck = true; 30 installCheckPhase = ''
+1 -10
pkgs/by-name/an/anchor/package.nix
··· 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5 - stdenv, 6 - darwin, 7 }: 8 9 rustPlatform.buildRustPackage rec { ··· 18 fetchSubmodules = true; 19 }; 20 21 - cargoPatches = [ 22 - ./0001-update-time-rs.patch 23 - ]; 24 25 cargoLock = { 26 lockFile = ./Cargo.lock; ··· 28 "serum_dex-0.4.0" = "sha256-Nzhh3OcAFE2LcbUgrA4zE2TnUMfV0dD4iH6fTi48GcI="; 29 }; 30 }; 31 - 32 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 33 - darwin.apple_sdk.frameworks.Security 34 - darwin.apple_sdk.frameworks.SystemConfiguration 35 - ]; 36 37 checkFlags = [ 38 # the following test cases try to access network, skip them
··· 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5 }: 6 7 rustPlatform.buildRustPackage rec { ··· 16 fetchSubmodules = true; 17 }; 18 19 + cargoPatches = [ ./0001-update-time-rs.patch ]; 20 21 cargoLock = { 22 lockFile = ./Cargo.lock; ··· 24 "serum_dex-0.4.0" = "sha256-Nzhh3OcAFE2LcbUgrA4zE2TnUMfV0dD4iH6fTi48GcI="; 25 }; 26 }; 27 28 checkFlags = [ 29 # the following test cases try to access network, skip them
+1 -4
pkgs/by-name/as/asfa/package.nix
··· 3 rustPlatform, 4 fetchFromGitHub, 5 stdenv, 6 - darwin, 7 help2man, 8 openssl, 9 pkg-config, ··· 29 "man" 30 ]; 31 32 - buildInputs = [ 33 - openssl 34 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ]; 35 36 nativeBuildInputs = [ 37 help2man
··· 3 rustPlatform, 4 fetchFromGitHub, 5 stdenv, 6 help2man, 7 openssl, 8 pkg-config, ··· 28 "man" 29 ]; 30 31 + buildInputs = [ openssl ]; 32 33 nativeBuildInputs = [ 34 help2man
+1 -8
pkgs/by-name/as/asm-lsp/package.nix
··· 5 fetchFromGitHub, 6 pkg-config, 7 openssl, 8 - darwin, 9 - libiconv, 10 }: 11 let 12 pname = "asm-lsp"; ··· 24 25 nativeBuildInputs = [ pkg-config ]; 26 27 - buildInputs = 28 - [ openssl ] 29 - ++ lib.optionals stdenv.buildPlatform.isDarwin [ 30 - darwin.apple_sdk.frameworks.SystemConfiguration 31 - libiconv 32 - ]; 33 34 cargoHash = "sha256-AtCnYOOtViMpg+rz8miuBZg1pENBPaf9kamSPaVUyiw="; 35
··· 5 fetchFromGitHub, 6 pkg-config, 7 openssl, 8 }: 9 let 10 pname = "asm-lsp"; ··· 22 23 nativeBuildInputs = [ pkg-config ]; 24 25 + buildInputs = lib.optionals (!stdenv.hostPlatform.isDarwin) [ openssl ]; 26 27 cargoHash = "sha256-AtCnYOOtViMpg+rz8miuBZg1pENBPaf9kamSPaVUyiw="; 28
+3 -15
pkgs/by-name/at/atac/package.nix
··· 4 fetchFromGitHub, 5 pkg-config, 6 oniguruma, 7 - stdenv, 8 - darwin, 9 }: 10 rustPlatform.buildRustPackage rec { 11 pname = "atac"; ··· 20 21 cargoHash = "sha256-sNgtqvFiwHSYMDf0379i8Yl9NrkCRVLo/ogjbHFgKBY="; 22 23 - nativeBuildInputs = [ 24 - pkg-config 25 - ]; 26 27 - buildInputs = 28 - [ 29 - oniguruma 30 - ] 31 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 32 - darwin.apple_sdk.frameworks.AppKit 33 - darwin.apple_sdk.frameworks.Security 34 - darwin.apple_sdk.frameworks.SystemConfiguration 35 - ]; 36 37 env = { 38 RUSTONIG_SYSTEM_LIBONIG = true; ··· 42 description = "Simple API client (postman like) in your terminal"; 43 homepage = "https://github.com/Julien-cpsn/ATAC"; 44 license = licenses.mit; 45 - maintainers = with maintainers; [vinnymeller]; 46 mainProgram = "atac"; 47 }; 48 }
··· 4 fetchFromGitHub, 5 pkg-config, 6 oniguruma, 7 }: 8 rustPlatform.buildRustPackage rec { 9 pname = "atac"; ··· 18 19 cargoHash = "sha256-sNgtqvFiwHSYMDf0379i8Yl9NrkCRVLo/ogjbHFgKBY="; 20 21 + nativeBuildInputs = [ pkg-config ]; 22 23 + buildInputs = [ oniguruma ]; 24 25 env = { 26 RUSTONIG_SYSTEM_LIBONIG = true; ··· 30 description = "Simple API client (postman like) in your terminal"; 31 homepage = "https://github.com/Julien-cpsn/ATAC"; 32 license = licenses.mit; 33 + maintainers = with maintainers; [ vinnymeller ]; 34 mainProgram = "atac"; 35 }; 36 }
-8
pkgs/by-name/at/attract-mode/package.nix
··· 13 zlib, 14 openal, 15 fontconfig, 16 - darwin, 17 }: 18 19 stdenv.mkDerivation { ··· 43 ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ 44 openal 45 fontconfig 46 - ] 47 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 48 - darwin.apple_sdk.frameworks.Cocoa 49 - darwin.apple_sdk.frameworks.Carbon 50 - darwin.apple_sdk.frameworks.IOKit 51 - darwin.apple_sdk.frameworks.CoreVideo 52 - darwin.apple_sdk.frameworks.OpenAL 53 ]; 54 55 makeFlags = [
··· 13 zlib, 14 openal, 15 fontconfig, 16 }: 17 18 stdenv.mkDerivation { ··· 42 ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ 43 openal 44 fontconfig 45 ]; 46 47 makeFlags = [
+1 -4
pkgs/by-name/av/avbroot/package.nix
··· 6 protobuf, 7 bzip2, 8 stdenv, 9 - darwin, 10 }: 11 12 rustPlatform.buildRustPackage rec { ··· 33 protobuf 34 ]; 35 36 - buildInputs = [ 37 - bzip2 38 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ]; 39 40 meta = { 41 description = "Sign (and root) Android A/B OTAs with custom keys while preserving Android Verified Boot";
··· 6 protobuf, 7 bzip2, 8 stdenv, 9 }: 10 11 rustPlatform.buildRustPackage rec { ··· 32 protobuf 33 ]; 34 35 + buildInputs = [ bzip2 ]; 36 37 meta = { 38 description = "Sign (and root) Android A/B OTAs with custom keys while preserving Android Verified Boot";
+1 -8
pkgs/by-name/ba/bacon/package.nix
··· 3 stdenv, 4 rustPlatform, 5 fetchFromGitHub, 6 - darwin, 7 versionCheckHook, 8 nix-update-script, 9 }: ··· 21 22 cargoHash = "sha256-rlWNrkzUDs3rbQ5ZV4fKU/EKEy4fVbxEP0+wNwXi7Ag="; 23 24 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 25 - darwin.apple_sdk.frameworks.CoreServices 26 - ]; 27 - 28 - nativeInstallCheckInputs = [ 29 - versionCheckHook 30 - ]; 31 versionCheckProgramArg = [ "--version" ]; 32 doInstallCheck = true; 33
··· 3 stdenv, 4 rustPlatform, 5 fetchFromGitHub, 6 versionCheckHook, 7 nix-update-script, 8 }: ··· 20 21 cargoHash = "sha256-rlWNrkzUDs3rbQ5ZV4fKU/EKEy4fVbxEP0+wNwXi7Ag="; 22 23 + nativeInstallCheckInputs = [ versionCheckHook ]; 24 versionCheckProgramArg = [ "--version" ]; 25 doInstallCheck = true; 26
+7 -17
pkgs/by-name/bi/biome/package.nix
··· 6 libgit2, 7 rust-jemalloc-sys, 8 zlib, 9 - stdenv, 10 - darwin, 11 git, 12 }: 13 rustPlatform.buildRustPackage rec { ··· 23 24 cargoHash = "sha256-4vITbsXfgNFoeWMHz7a9Rk7FrsEZRe75nHiyHSMujEQ="; 25 26 - nativeBuildInputs = [ 27 - pkg-config 28 - ]; 29 - 30 - buildInputs = 31 - [ 32 - libgit2 33 - rust-jemalloc-sys 34 - zlib 35 - ] 36 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 37 - darwin.apple_sdk.frameworks.Security 38 - ]; 39 40 - nativeCheckInputs = [ 41 - git 42 ]; 43 44 cargoBuildFlags = [ "-p=biome_cli" ]; 45 cargoTestFlags =
··· 6 libgit2, 7 rust-jemalloc-sys, 8 zlib, 9 git, 10 }: 11 rustPlatform.buildRustPackage rec { ··· 21 22 cargoHash = "sha256-4vITbsXfgNFoeWMHz7a9Rk7FrsEZRe75nHiyHSMujEQ="; 23 24 + nativeBuildInputs = [ pkg-config ]; 25 26 + buildInputs = [ 27 + libgit2 28 + rust-jemalloc-sys 29 + zlib 30 ]; 31 + 32 + nativeCheckInputs = [ git ]; 33 34 cargoBuildFlags = [ "-p=biome_cli" ]; 35 cargoTestFlags =
+3 -10
pkgs/by-name/bu/buckle/package.nix
··· 1 { 2 lib, 3 - stdenv, 4 fetchFromGitHub, 5 rustPlatform, 6 - darwin, 7 }: 8 9 rustPlatform.buildRustPackage rec { ··· 17 rev = "v${version}"; 18 hash = "sha256-eWhcDzw+6I5N0dse5avwhcQ/y6YZ6b3QKyBwWBrA/xo="; 19 }; 20 - 21 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 22 - darwin.apple_sdk.frameworks.Security 23 - darwin.apple_sdk.frameworks.SystemConfiguration 24 - ]; 25 26 checkFlags = [ 27 # Both tests access the network. ··· 29 "--skip=test_buck2_specific_version" 30 ]; 31 32 - meta = with lib; { 33 description = "Buck2 launcher"; 34 longDescription = '' 35 Buckle is a launcher for [Buck2](https://buck2.build). It manages ··· 39 enforcing the prelude is upgraded in sync. 40 ''; 41 homepage = "https://github.com/benbrittain/buckle"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ cbarrete ]; 44 mainProgram = "buckle"; 45 }; 46 }
··· 1 { 2 lib, 3 fetchFromGitHub, 4 rustPlatform, 5 }: 6 7 rustPlatform.buildRustPackage rec { ··· 15 rev = "v${version}"; 16 hash = "sha256-eWhcDzw+6I5N0dse5avwhcQ/y6YZ6b3QKyBwWBrA/xo="; 17 }; 18 19 checkFlags = [ 20 # Both tests access the network. ··· 22 "--skip=test_buck2_specific_version" 23 ]; 24 25 + meta = { 26 description = "Buck2 launcher"; 27 longDescription = '' 28 Buckle is a launcher for [Buck2](https://buck2.build). It manages ··· 32 enforcing the prelude is upgraded in sync. 33 ''; 34 homepage = "https://github.com/benbrittain/buckle"; 35 + license = lib.licenses.mit; 36 + maintainers = with lib.maintainers; [ cbarrete ]; 37 mainProgram = "buckle"; 38 }; 39 }
+12 -11
pkgs/by-name/bu/bulloak/package.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , rustPlatform 4 - , fetchurl 5 - , stdenv 6 - , darwin 7 }: 8 9 let ··· 42 43 cargoHash = "sha256-lj/wmLu4cBjDjzMD8DlIz+6Rnag0h+zWiE7lfcTC7lY="; 44 45 - buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ]; 46 - 47 # tests run in CI on the source repo 48 doCheck = false; 49 50 # provide the list of solc versions to the `svm-rs-builds` dependency 51 SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system}; 52 53 - meta = with lib; { 54 description = "Solidity test generator based on the Branching Tree Technique"; 55 homepage = "https://github.com/alexfertel/bulloak"; 56 - license = with licenses; [ mit asl20 ]; 57 mainProgram = "bulloak"; 58 - maintainers = with maintainers; [ beeb ]; 59 }; 60 }
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + rustPlatform, 5 + fetchurl, 6 + stdenv, 7 }: 8 9 let ··· 42 43 cargoHash = "sha256-lj/wmLu4cBjDjzMD8DlIz+6Rnag0h+zWiE7lfcTC7lY="; 44 45 # tests run in CI on the source repo 46 doCheck = false; 47 48 # provide the list of solc versions to the `svm-rs-builds` dependency 49 SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system}; 50 51 + meta = { 52 description = "Solidity test generator based on the Branching Tree Technique"; 53 homepage = "https://github.com/alexfertel/bulloak"; 54 + license = with lib.licenses; [ 55 + mit 56 + asl20 57 + ]; 58 mainProgram = "bulloak"; 59 + maintainers = with lib.maintainers; [ beeb ]; 60 }; 61 }