-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
csxcad: init at 0.6.2 #84644
csxcad: init at 0.6.2 #84644
Conversation
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec { | |||
|
|||
# note: optional component libCGAL_ImageIO would need zlib and opengl; | |||
# there are also libCGAL_Qt{3,4} omitted ATM | |||
buildInputs = [ boost gmp mpfr ]; | |||
propagatedBuildInputs = [ boost gmp mpfr ]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should not be propagating build inputs, unless they are required by a .pc
propagatedBuildInputs = [ boost gmp mpfr ]; | |
buildInputs = [ boost gmp mpfr ]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's .pc?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
an output of pkg-config
it lists what libraries need to be used by the package or propagated to transitive packages
|
||
meta = with stdenv.lib; { | ||
description = "A C++ library to describe geometrical objects"; | ||
homepage = https://github.com/thliebig/CSXCAD; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rfc 45
homepage = https://github.com/thliebig/CSXCAD; | |
homepage = "https://github.com/thliebig/CSXCAD"; |
|
||
stdenv.mkDerivation rec { | ||
name = "csxcad-${version}"; | ||
version = "0.6.2"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version = "0.6.2"; | |
version = "0.6.2"; | |
{ fetchFromGitHub, stdenv, cmake | ||
, fparser, tinyxml, hdf5, cgal_5, vtk | ||
}: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the style which the community seems to be going toward
{ fetchFromGitHub, stdenv, cmake | |
, fparser, tinyxml, hdf5, cgal_5, vtk | |
}: | |
{ stdenv | |
, fetchFromGitHub | |
, cmake | |
, fparser | |
, tinyxml | |
, hdf5 | |
, cgal_5 | |
, vtk | |
}: |
makes diffs a lot easier to read
@@ -0,0 +1,36 @@ | |||
{ fetchFromGitHub, stdenv, cmake | |||
, fparser, tinyxml, hdf5, cgal_5, vtk |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fparser doesn't seem to exist:
anonymous function at /var/lib/ofborg/checkout/repo/38dca4e3aa6bca43ea96d2fcc04e8229/mr-est/packet-spot-eval-1/pkgs/applications/science/electronics/csxcad/default.nix:1:1 called without required argument 'fparser'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My mistake. fparser PR here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've rebased against master, so the fparser error should be fixed.
@jonringer gentle ping on this. Thanks! |
src = fetchFromGitHub { | ||
owner = "thliebig"; | ||
repo = "CSXCAD"; | ||
rev = "ef6e40931dbd80e0959f37c8e9614c437bf7e518"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this doesnt seem to align with the official 0.6.2 release.
|
||
stdenv.mkDerivation rec { | ||
pname = "csxcad"; | ||
version = "0.6.2"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version = "0.6.2"; | |
version = "unstable-2020-02-08"; |
since the revision points to a commit of that date
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you are correct. Thanks for catching that. It is now fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Motivation for this change
Please see PR 69262 for details. We've decided to break up that PR into smaller pieces to make it easier to review. CSXCAD implements the geometry capabilities of OpenEMS.
Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after)