51 lines
930 B
Nix
51 lines
930 B
Nix
|
{ stdenv
|
||
|
, mkDerivation
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, csxcad
|
||
|
, tinyxml
|
||
|
, vtkWithQt5
|
||
|
, wrapQtAppsHook
|
||
|
, qtbase
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
pname = "qcsxcad";
|
||
|
version = "unstable-2020-01-04";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "thliebig";
|
||
|
repo = "QCSXCAD";
|
||
|
rev = "0dabbaf2bc1190adec300871cf309791af842c8e";
|
||
|
sha256 = "11kbh0mxbdfh7s5azqin3i2alic5ihmdfj0jwgnrhlpjk4cbf9rn";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
wrapQtAppsHook
|
||
|
];
|
||
|
|
||
|
cmakeFlags = [
|
||
|
"-DCMAKE_INSTALL_PREFIX=${placeholder "out"}"
|
||
|
"-DCSXCAD_ROOT_DIR=${csxcad}"
|
||
|
"-DENABLE_RPATH=OFF"
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
csxcad
|
||
|
tinyxml
|
||
|
vtkWithQt5
|
||
|
qtbase
|
||
|
];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Qt library for CSXCAD";
|
||
|
homepage = "https://github.com/thliebig/QCSXCAD";
|
||
|
license = licenses.gpl3;
|
||
|
maintainers = with maintainers; [ matthuszagh ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|