dssp: 4.4.11 -> 4.5.0 (#400656)
This commit is contained in:
commit
96e0c9d65e
@ -11,18 +11,16 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "dssp";
|
pname = "dssp";
|
||||||
version = "4.4.11";
|
version = "4.5.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "PDB-REDO";
|
owner = "PDB-REDO";
|
||||||
repo = "dssp";
|
repo = "dssp";
|
||||||
tag = "v${finalAttrs.version}";
|
tag = "v${finalAttrs.version}";
|
||||||
hash = "sha256-7L9pdKWDa/g/r+cuou2b0pqS559qwuwHBBhDDhvM7VE=";
|
hash = "sha256-UE97bdSx41K962TqXLlKsp8oDnBBX7uXqsfIzhWjsTI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [ cmake ];
|
||||||
cmake
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
eigen
|
eigen
|
||||||
@ -31,13 +29,13 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
zlib
|
zlib
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Calculate the most likely secondary structure assignment given the 3D structure of a protein";
|
description = "Calculate the most likely secondary structure assignment given the 3D structure of a protein";
|
||||||
mainProgram = "mkdssp";
|
mainProgram = "mkdssp";
|
||||||
homepage = "https://github.com/PDB-REDO/dssp";
|
homepage = "https://github.com/PDB-REDO/dssp";
|
||||||
changelog = "https://github.com/PDB-REDO/dssp/releases/tag/v${finalAttrs.version}";
|
changelog = "https://github.com/PDB-REDO/dssp/releases/tag/v${finalAttrs.version}";
|
||||||
license = licenses.bsd2;
|
license = lib.licenses.bsd2;
|
||||||
maintainers = with maintainers; [ natsukium ];
|
maintainers = with lib.maintainers; [ natsukium ];
|
||||||
platforms = platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|||||||
@ -10,18 +10,16 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "libcifpp";
|
pname = "libcifpp";
|
||||||
version = "7.0.9";
|
version = "8.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "PDB-REDO";
|
owner = "PDB-REDO";
|
||||||
repo = "libcifpp";
|
repo = "libcifpp";
|
||||||
tag = "v${finalAttrs.version}";
|
tag = "v${finalAttrs.version}";
|
||||||
hash = "sha256-wV4YvQmtpbj+mOiMeSr9gBpZzFPygkAOkj74vv4pA4U=";
|
hash = "sha256-t1ovrrKu+QSSdwgTp2Nag4SsAJeU9aRizJccd+u+dVI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [ cmake ];
|
||||||
cmake
|
|
||||||
];
|
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
# disable network access
|
# disable network access
|
||||||
@ -39,12 +37,12 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
mkdir -p $out/share/libcifpp
|
mkdir -p $out/share/libcifpp
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Manipulate mmCIF and PDB files";
|
description = "Manipulate mmCIF and PDB files";
|
||||||
homepage = "https://github.com/PDB-REDO/libcifpp";
|
homepage = "https://github.com/PDB-REDO/libcifpp";
|
||||||
changelog = "https://github.com/PDB-REDO/libcifpp/releases/tag/v${finalAttrs.version}";
|
changelog = "https://github.com/PDB-REDO/libcifpp/releases/tag/v${finalAttrs.version}";
|
||||||
license = licenses.bsd2;
|
license = lib.licenses.bsd2;
|
||||||
maintainers = with maintainers; [ natsukium ];
|
maintainers = with lib.maintainers; [ natsukium ];
|
||||||
platforms = platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user