nixpkgs/pkgs/by-name/sw/swiftformat/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

46 lines
1.3 KiB
Nix

{ stdenv, lib, fetchFromGitHub }:
# This derivation is impure: it relies on an Xcode toolchain being installed
# and available in the expected place. The values of sandboxProfile and
# hydraPlatforms are copied pretty directly from the MacVim derivation, which
# is also impure.
stdenv.mkDerivation rec {
pname = "swiftformat";
version = "0.47.10";
src = fetchFromGitHub {
owner = "nicklockwood";
repo = "SwiftFormat";
rev = version;
sha256 = "1gqxpymbhpmap0i2blg9akarlql4mkzv45l4i212gsxcs991b939";
};
preConfigure = "LD=$CC";
buildPhase = ''
/usr/bin/xcodebuild -project SwiftFormat.xcodeproj \
-scheme "SwiftFormat (Command Line Tool)" \
CODE_SIGN_IDENTITY= SYMROOT=build OBJROOT=build
'';
installPhase = ''
install -D -m 0555 build/Release/swiftformat $out/bin/swiftformat
'';
sandboxProfile = ''
(allow file-read* file-write* process-exec mach-lookup)
; block homebrew dependencies
(deny file-read* file-write* process-exec mach-lookup (subpath "/usr/local") (with no-log))
'';
meta = with lib; {
description = "Code formatting and linting tool for Swift";
homepage = "https://github.com/nicklockwood/SwiftFormat";
license = licenses.mit;
maintainers = [ maintainers.bdesham ];
platforms = platforms.darwin;
hydraPlatforms = [];
};
}