mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
appcsxcad: init at unstable-2020-01-04
This commit is contained in:
parent
7dc7e2e7b8
commit
93e5e9e22d
58
pkgs/applications/science/electronics/appcsxcad/default.nix
Normal file
58
pkgs/applications/science/electronics/appcsxcad/default.nix
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
{ lib
|
||||||
|
, mkDerivation
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, csxcad
|
||||||
|
, qcsxcad
|
||||||
|
, hdf5
|
||||||
|
, vtkWithQt5
|
||||||
|
, qtbase
|
||||||
|
, wrapQtAppsHook
|
||||||
|
, fparser
|
||||||
|
, tinyxml
|
||||||
|
, cgal
|
||||||
|
, boost
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation {
|
||||||
|
pname = "appcsxcad";
|
||||||
|
version = "unstable-2020-01-04";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "thliebig";
|
||||||
|
repo = "AppCSXCAD";
|
||||||
|
rev = "de8c271ec8b57e80233cb2a432e3d7fd54d30876";
|
||||||
|
sha256 = "0shnfa0if3w588a68gr82qi6k7ldg1j2921fnzji90mmay21birp";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
wrapQtAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
csxcad
|
||||||
|
qcsxcad
|
||||||
|
hdf5
|
||||||
|
vtkWithQt5
|
||||||
|
qtbase
|
||||||
|
fparser
|
||||||
|
tinyxml
|
||||||
|
cgal
|
||||||
|
boost
|
||||||
|
];
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
rm $out/bin/AppCSXCAD.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Minimal Application using the QCSXCAD library";
|
||||||
|
homepage = "https://github.com/thliebig/AppCSXCAD";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ matthuszagh ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -25740,6 +25740,8 @@ in
|
|||||||
|
|
||||||
adms = callPackage ../applications/science/electronics/adms { };
|
adms = callPackage ../applications/science/electronics/adms { };
|
||||||
|
|
||||||
|
appcsxcad = libsForQt5.callPackage ../applications/science/electronics/appcsxcad { };
|
||||||
|
|
||||||
# Since version 8 Eagle requires an Autodesk account and a subscription
|
# Since version 8 Eagle requires an Autodesk account and a subscription
|
||||||
# in contrast to single payment for the charged editions.
|
# in contrast to single payment for the charged editions.
|
||||||
# This is the last version with the old model.
|
# This is the last version with the old model.
|
||||||
|
Loading…
Reference in New Issue
Block a user