Skip to content

Commit

Permalink
crest: enable xtb-iff support for QCG algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
sheepforce committed Aug 8, 2023
1 parent be5d7b3 commit 532bdab
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions pkgs/apps/crest/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{ stdenv, lib, fetchpatch, makeWrapper, cmake
, gfortran, blas, lapack, fetchFromGitHub, xtb
} :
{ stdenv
, lib
, fetchpatch
, makeWrapper
, cmake
, gfortran
, blas
, lapack
, fetchFromGitHub
, xtb
, xtb-iff
}:

stdenv.mkDerivation rec {
pname = "crest";
Expand All @@ -27,7 +36,8 @@ stdenv.mkDerivation rec {

postFixup = ''
wrapProgram $out/bin/crest \
--prefix PATH : "${xtb}/bin"
--prefix PATH : "${xtb}/bin" \
--prefix PATH : "${xtb-iff}/bin"
'';

meta = with lib; {
Expand Down

0 comments on commit 532bdab

Please sign in to comment.