mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ lib, stdenv, fetchzip, jdk, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "asciidoctorj";
|
|
version = "3.0.0";
|
|
|
|
src = fetchzip {
|
|
url = "mirror://maven/org/asciidoctor/${pname}/${version}/${pname}-${version}-bin.zip";
|
|
sha256 = "sha256-F4tmpdNS0PIoLpqV9gifJf2iQ/kX+cp3EssRyhzyOUw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
rm bin/asciidoctorj.bat
|
|
cp -r . $out
|
|
wrapProgram $out/bin/asciidoctorj \
|
|
--prefix JAVA_HOME : ${jdk}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Official library for running Asciidoctor on the JVM";
|
|
longDescription = ''
|
|
AsciidoctorJ is the official library for running Asciidoctor on the JVM.
|
|
Using AsciidoctorJ, you can convert AsciiDoc content or analyze the
|
|
structure of a parsed AsciiDoc document from Java and other JVM
|
|
languages.
|
|
'';
|
|
homepage = "https://asciidoctor.org/docs/asciidoctorj/";
|
|
license = licenses.asl20;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ moaxcp ];
|
|
mainProgram = "asciidoctorj";
|
|
};
|
|
}
|