Skip to content

Commit

Permalink
nix: No hasty openMP
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Jan 8, 2019
1 parent 2f7db79 commit 2a05d8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions literateNix.org
Original file line number Diff line number Diff line change
Expand Up @@ -367,11 +367,11 @@ yamlCpp
Incredibly, there isn't much love for the well made [[http://www.shark-ml.org][shark-ml]] software.
#+BEGIN_SRC nix :tangle nix/pkgs/sharkML/sharkML.nix
# A standard cmake-based build
{ clangStdenv, fetchJSON, cmake, boost, openblas, liblapack, openmp }:
{ clangStdenv, fetchJSON, cmake, boost, openblas, liblapack }:
clangStdenv.mkDerivation {
name = "sharkML-master";
src = fetchJSON ./sharkML.src.json;
nativeBuildInputs = [ cmake boost openblas liblapack openmp ];
nativeBuildInputs = [ cmake boost openblas liblapack ];
}
#+END_SRC
With the standard data definition
Expand Down
4 changes: 2 additions & 2 deletions nix/pkgs/sharkML/sharkML.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# [[file:~/Git/Github/C++/Forks/structureFactor/literateNix.org::*SharkML][SharkML:1]]
# A standard cmake-based build
{ clangStdenv, fetchJSON, cmake, boost, openblas, liblapack, openmp }:
{ clangStdenv, fetchJSON, cmake, boost, openblas, liblapack }:
clangStdenv.mkDerivation {
name = "sharkML-master";
src = fetchJSON ./sharkML.src.json;
nativeBuildInputs = [ cmake boost openblas liblapack openmp ];
nativeBuildInputs = [ cmake boost openblas liblapack ];
}
# SharkML:1 ends here

0 comments on commit 2a05d8d

Please sign in to comment.