3
0
Fork 0
forked from mirrors/nixpkgs

dssp: init at 4.0.5

This commit is contained in:
natsukium 2022-07-19 12:17:34 +09:00
parent a8a4cdb76d
commit cf0dc604a6
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, libcifpp, zlib, }:
stdenv.mkDerivation rec {
pname = "dssp";
version = "4.0.5";
src = fetchFromGitHub {
owner = "PDB-REDO";
repo = pname;
rev = "v${version}";
sha256 = "1x35rdcm4fch66pjbmy73lv0gdb6g9y3v023a66512a6nzsqjsir";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost libcifpp zlib ];
meta = with lib; {
description = "Calculate the most likely secondary structure assignment given the 3D structure of a protein";
homepage = "https://github.com/PDB-REDO/dssp";
license = licenses.bsd2;
maintainers = with maintainers; [ natsukium ];
platforms = platforms.unix;
};
}

View file

@ -33378,6 +33378,8 @@ with pkgs;
diamond = callPackage ../applications/science/biology/diamond { };
dssp = callPackage ../applications/science/biology/dssp { };
ecopcr = callPackage ../applications/science/biology/ecopcr { };
eggnog-mapper = callPackage ../applications/science/biology/eggnog-mapper { };