nixpkgs-suyu/pkgs/development/tools/zprint/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

2021-11-23 16:45:57 +01:00
{ lib, buildGraalvmNativeImage, fetchurl }:
2021-05-24 02:19:29 +02:00
2021-11-23 16:45:57 +01:00
buildGraalvmNativeImage rec {
2021-05-24 02:19:29 +02:00
pname = "zprint";
2021-12-05 17:59:25 +01:00
version = "1.2.0";
2021-05-24 02:19:29 +02:00
src = fetchurl {
2021-11-23 16:45:57 +01:00
url = "https://github.com/kkinnear/${pname}/releases/download/${version}/${pname}-filter-${version}";
2021-12-05 17:59:25 +01:00
sha256 = "sha256-av1DsTijNzLdnBjTF2fEFqEM/X2VUVFvNuC09ikeDGM=";
2021-05-24 02:19:29 +02:00
};
2021-11-23 16:45:57 +01:00
extraNativeImageBuildArgs = [
"--no-server"
"-H:EnableURLProtocols=https,http"
"-H:+ReportExceptionStackTraces"
"--report-unsupported-elements-at-runtime"
"--initialize-at-build-time"
"--no-fallback"
];
2021-05-24 02:19:29 +02:00
meta = with lib; {
description = "Clojure/EDN source code formatter and pretty printer";
longDescription = ''
Library and command line tool providing a variety of pretty printing capabilities
for both Clojure code and Clojure/EDN structures. It can meet almost anyone's needs.
As such, it supports a number of major source code formatting approaches
'';
homepage = "https://github.com/kkinnear/zprint";
license = licenses.mit;
maintainers = with maintainers; [ stelcodes ];
};
}