-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from sheepforce/psi4
psi4: external libint + generic blas, dft-d3: replace with free fork
- Loading branch information
Showing
4 changed files
with
49 additions
and
81 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,29 @@ | ||
{ lib, stdenv, fetchurl, gfortran } : | ||
{ lib, stdenv, fetchFromGitHub, gfortran } : | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "dft-d3"; | ||
version = "3.2rev0"; | ||
pname = "dftd3-lib"; | ||
version = "0.10"; # Equivalent to 3.2rev0 of the original | ||
|
||
nativeBuildInputs = [ gfortran ]; | ||
|
||
src = fetchurl { | ||
url = "https://www.chemie.uni-bonn.de/pctc/mulliken-center/software/dft-d3/dftd3.tgz"; | ||
sha256 = "0n8gi0raz8rik1rkd4ifq43wxs56ykxlhm22hpyq3ak1ixszjz6r"; | ||
src = fetchFromGitHub { | ||
owner = "dftbplus"; | ||
repo = pname; | ||
rev = version; | ||
hash = "sha256-lda0eEb/QoMG2Sb1/VhJSr+fJcu2wvy1hqw+rVDhe2w="; | ||
}; | ||
|
||
unpackPhase = '' | ||
tar -xvf $src | ||
''; | ||
|
||
# Using gfortran for linking instead of ifort | ||
patches = [ | ||
./Linking.patch | ||
]; | ||
|
||
dontConfigure = true; | ||
|
||
|
||
installPhase = '' | ||
mkdir -p $out/bin | ||
cp -p dftd3 $out/bin | ||
cp prg/dftd3 $out/bin/. | ||
''; | ||
|
||
hardeningDisable = [ | ||
"format" | ||
]; | ||
hardeningDisable = [ "format" ]; | ||
|
||
meta = with lib; { | ||
description = "Dispersion correction for DFT"; | ||
homepage = "https://www.chemie.uni-bonn.de/pctc/mulliken-center/software/dft-d3/get-the-current-version-of-dft-d3"; | ||
homepage = "https://github.com/dftbplus/dftd3-lib"; | ||
platforms = platforms.unix; | ||
license = licenses.unfree; | ||
license = licenses.gpl1; | ||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters