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