nixpkgs/pkgs/tools/system/jsvc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.1 KiB
Nix
Raw Normal View History

2021-04-23 05:17:24 +00:00
{ lib, stdenv, fetchurl, commonsDaemon, jdk, makeWrapper, jre }:
stdenv.mkDerivation rec {
pname = "jsvc";
2023-06-23 12:58:28 +00:00
version = "1.3.4";
2021-04-23 05:17:24 +00:00
src = fetchurl {
url = "https://downloads.apache.org//commons/daemon/source/commons-daemon-${version}-src.tar.gz";
2023-06-23 12:58:28 +00:00
sha256 = "sha256-30hJ0F5YFmEOZ4IYg/T8HhFySgu4t4uEsh7dUDns674=";
2021-04-23 05:17:24 +00:00
};
buildInputs = [ commonsDaemon ];
nativeBuildInputs = [ jdk makeWrapper ];
preConfigure = ''
cd ./src/native/unix/
sh ./support/buildconf.sh
'';
preBuild = ''
export JAVA_HOME=${jre}
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp jsvc $out/bin/jsvc
chmod +x $out/bin/jsvc
wrapProgram $out/bin/jsvc --set JAVA_HOME "${jre}"
runHook postInstall
'';
meta = {
homepage = "https://commons.apache.org/proper/commons-daemon";
description = "A part of the Apache Commons Daemon software, a set of utilities and Java support classes for running Java applications as server processes";
2021-04-23 05:17:24 +00:00
maintainers = with lib.maintainers; [ rsynnest ];
license = lib.licenses.asl20;
platforms = with lib.platforms; unix;
2023-11-27 01:17:53 +00:00
mainProgram = "jsvc";
2021-04-23 05:17:24 +00:00
};
}