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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1 KiB
Nix
Raw Normal View History

2021-11-23 15:45:57 +00:00
{ lib, buildGraalvmNativeImage, fetchurl }:
2021-05-24 00:19:29 +00:00
2021-11-23 15:45:57 +00:00
buildGraalvmNativeImage rec {
2021-05-24 00:19:29 +00:00
pname = "zprint";
2022-08-03 00:42:47 +00:00
version = "1.2.4";
2021-05-24 00:19:29 +00:00
src = fetchurl {
2021-11-23 15:45:57 +00:00
url = "https://github.com/kkinnear/${pname}/releases/download/${version}/${pname}-filter-${version}";
2022-08-03 00:42:47 +00:00
sha256 = "sha256-PgmaKxTOZPgHhEfFA5FdHrKHHpfieoK2QZBYR3f0J8s=";
2021-05-24 00:19:29 +00:00
};
2021-11-23 15:45:57 +00:00
extraNativeImageBuildArgs = [
"--no-server"
"-H:EnableURLProtocols=https,http"
"-H:+ReportExceptionStackTraces"
"--report-unsupported-elements-at-runtime"
"--initialize-at-build-time"
"--no-fallback"
];
2021-05-24 00:19:29 +00: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 ];
};
}