libcifpp: init at 4.2.0
This commit is contained in:
parent
ec5eb91c8d
commit
a8a4cdb76d
2 changed files with 27 additions and 0 deletions
25
pkgs/development/libraries/libcifpp/default.nix
Normal file
25
pkgs/development/libraries/libcifpp/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue