nixpkgs/pkgs/by-name/sw/swiftlint/package.nix
2024-08-19 15:49:21 +01:00

43 lines
985 B
Nix

{
stdenvNoCC,
lib,
fetchurl,
unzip,
nix-update-script,
}:
stdenvNoCC.mkDerivation rec {
pname = "swiftlint";
version = "0.56.1";
src = fetchurl {
url = "https://github.com/realm/SwiftLint/releases/download/${version}/portable_swiftlint.zip";
hash = "sha256-EEOEKwZsLOdSdf24uj1oN6uyY4Ox+HIkClXIJ1d+wpk=";
};
dontPatch = true;
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
runHook preInstall
install -Dm755 swiftlint $out/bin/swiftlint
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "A tool to enforce Swift style and conventions";
homepage = "https://realm.github.io/SwiftLint/";
license = licenses.mit;
mainProgram = "swiftlint";
maintainers = with maintainers; [ matteopacini ];
platforms = platforms.darwin;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
}