Files
nixpkgs/pkgs/by-name/cl/cljstyle/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

47 lines
1.4 KiB
Nix

{
lib,
buildGraalvmNativeImage,
fetchMavenArtifact,
fetchurl,
versionCheckHook,
}:
buildGraalvmNativeImage (finalAttrs: {
pname = "cljstyle";
version = "0.17.642";
src = fetchurl {
url = "https://github.com/greglook/cljstyle/releases/download/${finalAttrs.version}/cljstyle-${finalAttrs.version}.jar";
hash = "sha256-AkCuTZeDXbNBuwPZEMhYGF/oOGIKq5zVDwL8xwnj+mE=";
};
extraNativeImageBuildArgs = [
"-H:+ReportExceptionStackTraces"
"--no-fallback"
"-cp ${finalAttrs.finalPackage.passthru.graal-build-time.passthru.jar}"
];
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = [ "version" ];
# must be on classpath to build native image
passthru.graal-build-time = fetchMavenArtifact {
repos = [ "https://repo.clojars.org/" ];
groupId = "com.github.clj-easy";
artifactId = "graal-build-time";
version = "1.0.5";
hash = "sha256-M6/U27a5n/QGuUzGmo8KphVnNa2K+LFajP5coZiFXoY=";
};
meta = {
description = "Tool for formatting Clojure code";
homepage = "https://github.com/greglook/cljstyle";
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
license = lib.licenses.epl10;
changelog = "https://github.com/greglook/cljstyle/blob/${finalAttrs.version}/CHANGELOG.md";
maintainers = with lib.maintainers; [ psyclyx ];
mainProgram = "cljstyle";
};
})