mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +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.
29 lines
1.0 KiB
Nix
29 lines
1.0 KiB
Nix
{lib, stdenv, fetchurl, makeWrapper, jre}:
|
|
stdenv.mkDerivation rec {
|
|
version = "1.28.1";
|
|
pname = "zipkin-server";
|
|
src = fetchurl {
|
|
url = "https://search.maven.org/remotecontent?filepath=io/zipkin/java/zipkin-server/${version}/zipkin-server-${version}-exec.jar";
|
|
sha256 = "02369fkv0kbl1isq6y26fh2zj5wxv3zck522m5wypsjlcfcw2apa";
|
|
};
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildCommand =
|
|
''
|
|
mkdir -p $out/share/java
|
|
cp ${src} $out/share/java/zipkin-server-${version}-exec.jar
|
|
mkdir -p $out/bin
|
|
makeWrapper ${jre}/bin/java $out/bin/zipkin-server \
|
|
--add-flags "-cp $out/share/java/zipkin-server-${version}-exec.jar org.springframework.boot.loader.JarLauncher"
|
|
'';
|
|
meta = with lib; {
|
|
description = "Zipkin distributed tracing system";
|
|
homepage = "https://zipkin.io/";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.hectorj ];
|
|
mainProgram = "zipkin-server";
|
|
};
|
|
}
|