mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +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.
35 lines
982 B
Nix
35 lines
982 B
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "riemann";
|
|
version = "0.3.11";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/riemann/riemann/releases/download/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-B09QBOVRHxwPR7oBZaurXMglx5cR/oN7eEKVhs3ZUyc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
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 lib; {
|
|
homepage = "http://riemann.io/";
|
|
description = "Network monitoring system";
|
|
mainProgram = "riemann";
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.epl10;
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|