python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libcifpp / default.nix
blob375b3fd3be499787961d6ceee078a83370099b53
1 { lib, stdenv, fetchFromGitHub, boost, cmake, }:
3 stdenv.mkDerivation rec {
4   pname = "libcifpp";
5   version = "4.2.2";
7   src = fetchFromGitHub {
8     owner = "PDB-REDO";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0mhplcpni4p8lavrq4fz9qq8mbxhvpnlxzy55yrz8y07d76ajg6y";
12   };
14   nativeBuildInputs = [ cmake ];
16   buildInputs = [ boost ];
18   meta = with lib; {
19     description = "Manipulate mmCIF and PDB files";
20     homepage = "https://github.com/PDB-REDO/libcifpp";
21     license = licenses.bsd2;
22     maintainers = with maintainers; [ natsukium ];
23     platforms = platforms.unix;
24   };