nixpkgs/pkgs/by-name/ds/dssp/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
903 B
Nix
Raw Normal View History

{ lib
, stdenv
, cmake
, eigen
, fetchFromGitHub
, libcifpp
, libmcfp
, zlib
}:
2022-07-19 03:17:34 +00:00
stdenv.mkDerivation (finalAttrs: {
2022-07-19 03:17:34 +00:00
pname = "dssp";
version = "4.4.10";
2022-07-19 03:17:34 +00:00
src = fetchFromGitHub {
owner = "PDB-REDO";
repo = "dssp";
rev = "refs/tags/v${finalAttrs.version}";
hash = "sha256-YNYpHjp9kEszXvLF3RrNg6gYd4GPvfRVtdkUwJ89qOc=";
2022-07-19 03:17:34 +00:00
};
nativeBuildInputs = [
cmake
];
2022-07-19 03:17:34 +00:00
buildInputs = [
eigen
libcifpp
libmcfp
zlib
];
2022-07-19 03:17:34 +00:00
meta = with lib; {
description = "Calculate the most likely secondary structure assignment given the 3D structure of a protein";
mainProgram = "mkdssp";
2022-07-19 03:17:34 +00:00
homepage = "https://github.com/PDB-REDO/dssp";
changelog = "https://github.com/PDB-REDO/dssp/releases/tag/${lib.removePrefix "refs/tags/" finalAttrs.src.rev}";
2022-07-19 03:17:34 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ natsukium ];
platforms = platforms.unix;
};
})