mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
pcmsolver: init at 1.3.0
formatting Co-authored-by: Sandro <sandro.jaeckel@gmail.com> formatting Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
83b63c93de
commit
3f1fc1731e
43
pkgs/development/libraries/pcmsolver/default.nix
Normal file
43
pkgs/development/libraries/pcmsolver/default.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, perl, gfortran, python
|
||||
, boost, eigen, zlib
|
||||
} :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pcmsolver";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "PCMSolver";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256= "0jrxr8z21hjy7ik999hna9rdqy221kbkl3qkb06xw7g80rc9x9yr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
gfortran
|
||||
perl
|
||||
python
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
boost
|
||||
eigen
|
||||
zlib
|
||||
];
|
||||
|
||||
cmakeFlags = [ "-DENABLE_OPENMP=ON" ];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
# Requires files, that are not installed.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "An API for the Polarizable Continuum Model";
|
||||
homepage = "https://pcmsolver.readthedocs.io/en/stable/";
|
||||
license = licenses.lgpl3Only;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.sheepforce ];
|
||||
};
|
||||
}
|
@ -7156,6 +7156,8 @@ in
|
||||
|
||||
pasystray = callPackage ../tools/audio/pasystray { };
|
||||
|
||||
pcmsolver = callPackage ../development/libraries/pcmsolver { };
|
||||
|
||||
phash = callPackage ../development/libraries/phash { };
|
||||
|
||||
pnmixer = callPackage ../tools/audio/pnmixer { };
|
||||
|
Loading…
Reference in New Issue
Block a user