libcifpp: init at 4.2.0

This commit is contained in:
natsukium 2022-07-19 12:14:28 +09:00
parent ec5eb91c8d
commit a8a4cdb76d
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, boost, cmake, }:
stdenv.mkDerivation rec {
pname = "libcifpp";
version = "4.2.0";
src = fetchFromGitHub {
owner = "PDB-REDO";
repo = pname;
rev = "v${version}";
sha256 = "1hzi6fgbsmy8h8nfwkyfds9jz13nqw72h0x81jqw5516kkvar5iw";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost ];
meta = with lib; {
description = "Manipulate mmCIF and PDB files";
homepage = "https://github.com/PDB-REDO/libcifpp";
license = licenses.bsd2;
maintainers = with maintainers; [ natsukium ];
platforms = platforms.unix;
};
}

View file

@ -18714,6 +18714,8 @@ with pkgs;
libchop = callPackage ../development/libraries/libchop { };
libcifpp = callPackage ../development/libraries/libcifpp { };
libcint = callPackage ../development/libraries/libcint { };
libclc = callPackage ../development/libraries/libclc { };