dssp: 4.4.11 -> 4.5.0

Diff: https://github.com/PDB-REDO/dssp/compare/refs/tags/v4.4.11...refs/tags/v4.5.0

Changelog: https://github.com/PDB-REDO/dssp/releases/tag/v4.5.0

authored by emaryn and committed by emaryn 2c5f4e2e 2b70f37c

+7 -9
+7 -9
pkgs/by-name/ds/dssp/package.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "dssp"; 14 - version = "4.4.11"; 15 16 src = fetchFromGitHub { 17 owner = "PDB-REDO"; 18 repo = "dssp"; 19 tag = "v${finalAttrs.version}"; 20 - hash = "sha256-7L9pdKWDa/g/r+cuou2b0pqS559qwuwHBBhDDhvM7VE="; 21 }; 22 23 - nativeBuildInputs = [ 24 - cmake 25 - ]; 26 27 buildInputs = [ 28 eigen ··· 31 zlib 32 ]; 33 34 - meta = with lib; { 35 description = "Calculate the most likely secondary structure assignment given the 3D structure of a protein"; 36 mainProgram = "mkdssp"; 37 homepage = "https://github.com/PDB-REDO/dssp"; 38 changelog = "https://github.com/PDB-REDO/dssp/releases/tag/v${finalAttrs.version}"; 39 - license = licenses.bsd2; 40 - maintainers = with maintainers; [ natsukium ]; 41 - platforms = platforms.unix; 42 }; 43 })
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "dssp"; 14 + version = "4.5.0"; 15 16 src = fetchFromGitHub { 17 owner = "PDB-REDO"; 18 repo = "dssp"; 19 tag = "v${finalAttrs.version}"; 20 + hash = "sha256-UE97bdSx41K962TqXLlKsp8oDnBBX7uXqsfIzhWjsTI="; 21 }; 22 23 + nativeBuildInputs = [ cmake ]; 24 25 buildInputs = [ 26 eigen ··· 29 zlib 30 ]; 31 32 + meta = { 33 description = "Calculate the most likely secondary structure assignment given the 3D structure of a protein"; 34 mainProgram = "mkdssp"; 35 homepage = "https://github.com/PDB-REDO/dssp"; 36 changelog = "https://github.com/PDB-REDO/dssp/releases/tag/v${finalAttrs.version}"; 37 + license = lib.licenses.bsd2; 38 + maintainers = with lib.maintainers; [ natsukium ]; 39 + platforms = lib.platforms.unix; 40 }; 41 })