mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +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.
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, jre, makeWrapper, testers, swagger-codegen3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.0.62";
|
|
pname = "swagger-codegen";
|
|
|
|
jarfilename = "${pname}-cli-${version}.jar";
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://maven/io/swagger/codegen/v3/${pname}-cli/${version}/${jarfilename}";
|
|
sha256 = "sha256-23opx14BRfG7SjcSKXu59wmrrJsJiGebiMRvidV2gE8=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
install -D $src $out/share/java/${jarfilename}
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/${pname}3 \
|
|
--add-flags "-jar $out/share/java/${jarfilename}"
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = swagger-codegen3;
|
|
command = "swagger-codegen3 version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Allows generation of API client libraries (SDK generation), server stubs and documentation automatically given an OpenAPI Spec";
|
|
homepage = "https://github.com/swagger-api/swagger-codegen/tree/3.0.0";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers._1000101 ];
|
|
mainProgram = "swagger-codegen3";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|