mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, jdk
|
|
, jre
|
|
, survex
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "tunnelx";
|
|
version = "2023-09-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CaveSurveying";
|
|
repo = "tunnelx";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-4vTtmhVNDXUD7pCiugt+Yl/M3MFsUnzJfpcU9AxnGvA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
jdk
|
|
makeWrapper
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
javac -d . src/*.java
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/java
|
|
cp -r symbols Tunnel tutorials $out/java
|
|
# `SURVEX_EXECUTABLE_DIR` must include trailing slash
|
|
makeWrapper ${jre}/bin/java $out/bin/tunnelx \
|
|
--add-flags "-cp $out/java Tunnel.MainBox" \
|
|
--set SURVEX_EXECUTABLE_DIR ${lib.getBin survex}/bin/ \
|
|
--set TUNNEL_USER_DIR $out/java/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Program for drawing cave surveys in 2D";
|
|
homepage = "https://github.com/CaveSurveying/tunnelx/";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ goatchurchprime ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "tunnelx";
|
|
};
|
|
})
|