35 lines
937 B
Nix
35 lines
937 B
Nix
{ stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "riemann-${version}";
|
|
version = "0.3.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/riemann/riemann/releases/download/${version}/${name}.tar.bz2";
|
|
sha256 = "11xcmmp5k78vr5ch42zwx9ym84y6kf81z9zwawqybvx7wmlbpdiq";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase = ''
|
|
substituteInPlace bin/riemann --replace '$top/lib/riemann.jar' "$out/share/java/riemann.jar"
|
|
|
|
mkdir -p $out/share/java $out/bin $out/etc
|
|
mv lib/riemann.jar $out/share/java/
|
|
mv bin/riemann $out/bin/
|
|
mv etc/riemann.config $out/etc/
|
|
|
|
wrapProgram "$out/bin/riemann" --prefix PATH : "${jre}/bin"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://riemann.io/;
|
|
description = "A network monitoring system";
|
|
license = licenses.epl10;
|
|
platforms = platforms.all;
|
|
maintainers = [];
|
|
};
|
|
}
|