1 { lib, buildGraalvmNativeImage, fetchurl }:
3 buildGraalvmNativeImage rec {
8 url = "https://github.com/kkinnear/${pname}/releases/download/${version}/${pname}-filter-${version}";
9 sha256 = "sha256-PgmaKxTOZPgHhEfFA5FdHrKHHpfieoK2QZBYR3f0J8s=";
12 extraNativeImageBuildArgs = [
14 "-H:EnableURLProtocols=https,http"
15 "-H:+ReportExceptionStackTraces"
16 "--report-unsupported-elements-at-runtime"
17 "--initialize-at-build-time"
22 description = "Clojure/EDN source code formatter and pretty printer";
24 Library and command line tool providing a variety of pretty printing capabilities
25 for both Clojure code and Clojure/EDN structures. It can meet almost anyone's needs.
26 As such, it supports a number of major source code formatting approaches
28 homepage = "https://github.com/kkinnear/zprint";
29 license = licenses.mit;
30 maintainers = with maintainers; [ stelcodes ];