swift-format 5.8 -> 508.0.1 https://github.com/apple/swift-format/releases attrpath: swift-format Checking auto update branch... No auto update branch exists Old version 5.8" not present in master derivation file with contents: { lib , stdenv , callPackage , swift , swiftpm , swiftpm2nix , 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 ]; 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; maintainers = with lib.maintainers; [ dtzWill trepetti dduan trundle stephank ]; }; }