5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
42 lines
876 B
Nix
42 lines
876 B
Nix
{ lib
|
|
, stdenv
|
|
, cmake
|
|
, eigen
|
|
, fetchFromGitHub
|
|
, libcifpp
|
|
, libmcfp
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "dssp";
|
|
version = "4.4.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PDB-REDO";
|
|
repo = "dssp";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-qePoZYkzzWuK6j1NM+q6fPuWVRDEe4OkPmXc9Nbqobo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
eigen
|
|
libcifpp
|
|
libmcfp
|
|
zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Calculate the most likely secondary structure assignment given the 3D structure of a protein";
|
|
mainProgram = "mkdssp";
|
|
homepage = "https://github.com/PDB-REDO/dssp";
|
|
changelog = "https://github.com/PDB-REDO/libcifpp/releases/tag/${finalAttrs.src.rev}";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|