nixpkgs/pkgs/applications/misc/therion/default.nix

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

98 lines
1.5 KiB
Nix
Raw Normal View History

2023-04-29 23:12:37 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, perl
, tcl
, tcllib
, tk
, expat
, bwidget
, python3
, texliveTeTeX
2023-04-29 23:12:37 +00:00
, survex
, makeWrapper
, fmt
, proj
, wxGTK32
, vtk
, freetype
, libjpeg
, gettext
, libGL
, libGLU
, sqlite
, libtiff
, curl
, tkimg
}:
stdenv.mkDerivation rec {
pname = "therion";
2023-06-24 18:58:23 +00:00
version = "6.1.8";
2023-04-29 23:12:37 +00:00
src = fetchFromGitHub {
owner = "therion";
repo = "therion";
rev = "v${version}";
2023-06-24 18:58:23 +00:00
hash = "sha256-bmp0IZ4uAqDpe2e8UeIDUdFaaocx4OBIYuhnaHirqGc=";
2023-04-29 23:12:37 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
perl
python3
texliveTeTeX
2023-04-29 23:12:37 +00:00
makeWrapper
tcl.tclPackageHook
];
preConfigure = ''
export OUTDIR=$out
'';
cmakeFlags = [
"-DBUILD_THBOOK=OFF"
];
buildInputs = [
expat
tkimg
proj
wxGTK32
vtk
tk
freetype
libjpeg
gettext
libGL
libGLU
sqlite
libtiff
curl
fmt
tcl
tcllib
bwidget
];
fixupPhase = ''
runHook preFixup
wrapProgram $out/bin/therion \
--prefix PATH : ${lib.makeBinPath [ survex texliveTeTeX ]}
2023-04-29 23:12:37 +00:00
wrapProgram $out/bin/xtherion \
--prefix PATH : ${lib.makeBinPath [ tk ]}
runHook postFixup
'';
meta = with lib; {
description = "Therion cave surveying software";
homepage = "https://therion.speleo.sk/";
changelog = "https://github.com/therion/therion/blob/${src.rev}/CHANGES";
license = licenses.gpl2Only;
maintainers = with maintainers; [ matthewcroughan ];
};
}