In my experience this solution seems to be necessary on almost all if not all Swift packages on Linux
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchpatch,
|
|
callPackage,
|
|
swift,
|
|
swiftpm,
|
|
swiftpm2nix,
|
|
Dispatch,
|
|
Foundation,
|
|
}:
|
|
let
|
|
sources = callPackage ../sources.nix { };
|
|
generated = swiftpm2nix.helpers ./generated;
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "swift-format";
|
|
|
|
inherit (sources) version;
|
|
src = sources.swift-format;
|
|
|
|
nativeBuildInputs = [
|
|
swift
|
|
swiftpm
|
|
];
|
|
buildInputs = [ Foundation ];
|
|
|
|
env.LD_LIBRARY_PATH = lib.optionalString stdenv.hostPlatform.isLinux (
|
|
lib.makeLibraryPath [ Dispatch ]
|
|
);
|
|
|
|
configurePhase = generated.configure;
|
|
|
|
# We only install the swift-format binary, so don't need the other products.
|
|
swiftpmFlags = [ "--product swift-format" ];
|
|
|
|
installPhase = ''
|
|
binPath="$(swiftpmBinPath)"
|
|
mkdir -p $out/bin
|
|
cp $binPath/swift-format $out/bin/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Formatting technology for Swift source code";
|
|
homepage = "https://github.com/apple/swift-format";
|
|
platforms = with lib.platforms; linux ++ darwin;
|
|
license = lib.licenses.asl20;
|
|
teams = [ lib.teams.swift ];
|
|
mainProgram = "swift-format";
|
|
};
|
|
}
|