Commit Graph

63 Commits

Author SHA1 Message Date
Markus Kowalewski
d73e602b44 gromacs: 2024 -> 2024.1 2024-03-05 14:38:54 +01:00
Markus Kowalewski
f6616d2e3a gromacs: require single precssion when building with CUDA 2024-02-22 17:47:11 +01:00
Markus Kowalewski
eb93eb95ac gromacs: fix CUDA build 2024-02-22 17:39:02 +01:00
Markus Kowalewski
13eb3a2abe gromacs: fix build on Darwin, add OpenMP for Darwin
Gromacs enables OpenMP by default and fails its configure
if it can not build with OpenMP.
2024-02-02 11:02:55 +01:00
Markus Kowalewski
e7ea94137c gromacs: 2023.3 -> 2024 2024-02-01 10:55:43 +01:00
Someone Serge
31f1b517cd
gromacs: drop cudatoolkit.run 2023-12-04 20:24:32 +00:00
zimbatm
21c4107d3e gromacs: add the plumed patches
plumed 2.9.0 only supports gromacs-2023 so I had to downgrade the
package as well.
2023-11-15 18:28:24 +01:00
R. Ryantm
1daf6722ed gromacs: 2023.2 -> 2023.3 2023-10-20 09:17:18 +00:00
Markus Kowalewski
e3638150f2 gromacs: split outputs
fix patching of pkgconfig files
2023-10-08 11:29:14 +02:00
Andrey Alekseenko
2f707365e2 gromacs: update meta
- license is now lgpl21Plus
- accurate longDescription
2023-08-05 00:44:04 +00:00
Connor Baker
495875182e
Merge pull request #224068 from SomeoneSerge/respect-config-cudaSupport
Respect global config.cudaSupport
2023-07-25 14:18:14 -04:00
R. Ryantm
edb213c399 gromacs: 2023.1 -> 2023.2 2023-07-22 15:07:37 +00:00
Someone Serge
471dbe9bcf
treewide: consume config.cudaSupport as required
Eliminate uses of `config.cudaSupport or false` and alike, since the
option is now declared in config.nix with a default value

fd .nix -t f -x sed 's/config\.cudaSupport or false, cudaPackages [?] [{][}]/config.cudaSupport, cudaPackages ? { }/' '{}' -i
fd .nix -t f -x sed 's/config\.cudaSupport or false/config.cudaSupport/' '{}' -i
fd .nix -t f -x sed 's/cudaSupport = pkgs.config.cudaSupport/inherit (pkgs.config) cudaSupport/' '{}' -i
fd .nix -t f -x sed 's/cudaSupport = config.cudaSupport/inherit (config) cudaSupport/' '{}' -i
2023-07-20 18:08:19 +03:00
Someone Serge
74549ec63b
tree-wide: 'enableCuda ? false' -> 'config.cudaSupport or false' to respect global defaults 2023-07-20 17:27:07 +03:00
Markus Kowalewski
6cc2ab022a
gromacs: 2023 -> 2023.1 2023-04-23 21:36:32 +02:00
Ferry Jérémie
bfac2d0034 treewide:replace http by https when https is a permanent redirection 2023-02-19 21:47:59 +01:00
Markus Kowalewski
2379d34aa0
gromacs: 2022.4 -> 2023 2023-02-08 14:10:27 +01:00
Ferry Jérémie
65d7e87fdb treewide: replace http by https when https is a permanent redirection 2023-01-22 02:46:49 +01:00
Markus Kowalewski
57d39374e2
gromacs: 2022.3 -> 2022.4 2022-11-18 14:37:22 +01:00
Vladimír Čunát
7ddee326c2
gromacs*: fixup paths in .pc files 2022-09-28 16:48:34 +02:00
R. Ryantm
53a4c0bec3 gromacs: 2022.2 -> 2022.3 2022-09-05 15:04:40 +00:00
Markus Kowalewski
b4c6da2ee5
gromacs: 2022.1 -> 2022.2 2022-06-17 10:54:56 +02:00
R. Ryantm
0d56b692fa gromacs: 2022 -> 2022.1 2022-04-25 11:09:40 +00:00
Markus Kowalewski
469ae42107
gromacs: 2021.5 -> 2022 2022-02-23 14:47:26 +01:00
Markus Kowalewski
17d0b66cf6
gromacs: 2021.4 -> 2021.5 2022-01-17 15:50:31 +01:00
Markus Kowalewski
5cfe3c4e82
gromacs: fix double precission build on aarch64 2021-11-28 12:43:57 +01:00
Markus Kowalewski
430ad642a2
gromacs: 2021.3 -> 2021.4 2021-11-09 20:10:04 +01:00
Sandro Jäckel
a3286ac6cb
gromacs: fix formatting 2021-10-28 16:47:06 +02:00
Sandro Jäckel
face360c08
gromacs: replace lib.lists.optional with lib.optional 2021-10-28 16:46:13 +02:00
Phillip Seeber
e4d824f4e3 gromacs: bool switches for MPI and CUDA 2021-10-28 14:52:30 +02:00
Phillip Seeber
19e71dfa87 gromacs: 2020.4 -> 2021.3, cuda, mpi cleanups, performance tunings
gromacs: dont build double cuda version


gromacs: propagate mpi
2021-10-28 13:50:39 +02:00
Markus Kowalewski
6dba41fbcb
mpi: use mpi attribute consistently as the default MPI implementations
Use the attribute mpi to provide a system wide default MPI
implementation. The default is openmpi (as before).
This now allows for overriding the MPI implentation by using
the overlay mechanism. Build all packages with mpich instead
of the default openmpi can now be achived like this:
self: super:
 {
   mpi = super.mpich;
 }

All derivations that have been using "mpi ? null" to provide optional
building with MPI have been change in the following way to allow for
optional builds with MPI:
{ ...
, mpi
, useMpi ? false
}
2021-01-23 12:15:13 +01:00
Ben Siraphob
badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Markus Kowalewski
58e1666a58
gromacs: fix SIMD flags, and OpenMP
* make CPU acceleration selectable.
* update cmake flag for acceleration CPU_ACCELERATION -> SIMD
  GMX_CPU_ACCELERATION is outdated and has been ignored.
* add hwloc to inputs
* always build with OpenMP
* change name -> pname
2020-11-27 13:59:01 +01:00
R. RyanTM
afa6047e12 gromacs: 2020.3 -> 2020.4 2020-11-01 00:24:33 +00:00
R. RyanTM
215011c44d gromacs: 2020.2 -> 2020.3 2020-07-13 07:11:49 +00:00
R. RyanTM
ed5575071f gromacs: 2020.1 -> 2020.2 2020-05-05 05:59:23 +00:00
R. RyanTM
adcdd7b0a7 gromacs: 2020 -> 2020.1 2020-03-04 23:10:39 +00:00
R. RyanTM
60fd879921 gromacs: 2019.4 -> 2020 2020-01-06 04:30:02 -08:00
Robin Gloster
ac8eaa8507
treewide: fix *Flags 2019-12-30 04:50:37 +01:00
Markus Kowalewski
ea45dc1053
gromacs: add perl to buildInputs 2019-10-07 13:03:13 +02:00
R. RyanTM
8c6ee4fe16 gromacs: 2019.3 -> 2019.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gromacs/versions
2019-10-07 02:48:46 -07:00
R. RyanTM
0c54098340 gromacs: 2019.2 -> 2019.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gromacs/versions
2019-06-16 18:22:05 -07:00
R. RyanTM
dbfdaf048a gromacs: 2019.1 -> 2019.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gromacs/versions
2019-05-01 11:14:16 +02:00
R. RyanTM
c70807aa13 gromacs: 2019 -> 2019.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gromacs/versions
2019-03-22 22:05:26 -07:00
R. RyanTM
344fd2319b gromacs: 2018.4 -> 2019
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gromacs/versions
2019-01-03 05:58:09 -08:00
R. RyanTM
08a0192340 gromacs: 2018.3 -> 2018.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gromacs/versions
2018-11-19 06:47:47 -08:00
R. RyanTM
e94947af0a gromacs: 2018.2 -> 2018.3 (#46275)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
gromacs
2018-09-12 23:07:27 +02:00
R. RyanTM
d4f62f651f gromacs: 2018.1 -> 2018.2 (#42504)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/gromacs/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/GMXRC had a zero exit code or showed the expected version
- /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/GMXRC.bash passed the binary check.
- /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/GMXRC.zsh passed the binary check.
- Warning: no invocation of /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/GMXRC.csh had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/demux.pl had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/xplor2gmx.pl had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/gmx-completion.bash had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/gmx-completion-gmx.bash had a zero exit code or showed the expected version
- /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2/bin/gmx passed the binary check.
- 3 of 9 passed binary check by having a zero exit code.
- 0 of 9 passed binary check by having the new version present in output.
- found 2018.2 with grep in /nix/store/illh3rp28ipz35z0wipsfc18z4m03sah-gromacs-2018.2
- directory tree listing: https://gist.github.com/1679f0362dfcc7299a6d5b8d9e76c14e
- du listing: https://gist.github.com/2f848bb0fe181676c17b61a9d5a94953
2018-06-27 19:02:19 +02:00