mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
38 lines
983 B
Nix
38 lines
983 B
Nix
{ lib, stdenv, fetchurl, jre, graphviz, makeWrapper }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "genesys";
|
|
version = "1.0.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mrlem/genesys/releases/download/v${finalAttrs.version}/genesys-${finalAttrs.version}.tar.gz";
|
|
hash = "sha256-I1lEVvwRiGf1f4zUtqKhSb+it/nC8WAmw5S6edquOj8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
# The package is distributed as a prebuilt JAVA binary
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out
|
|
mv bin lib $out
|
|
wrapProgram $out/bin/${finalAttrs.pname} \
|
|
--set JAVA_HOME "${jre.home}" \
|
|
--prefix PATH : "${graphviz}/bin"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Simple family tree generator that scales";
|
|
homepage = "https://github.com/mrlem/genesys";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ rogarb ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|
|
|