Merge pull request #256274 from paveloom/cppcheck

cppcheck: 2.12.0 -> 2.12.1 + refactor

authored by Nick Cao and committed by GitHub a5283f10 076ea42f

+7 -6
+7 -6
pkgs/development/tools/analysis/cppcheck/default.nix
··· 1 - { docbook_xml_dtd_45 2 , docbook_xsl 3 - , fetchFromGitHub 4 , installShellFiles 5 - , lib 6 , libxslt 7 , pcre 8 , pkg-config 9 , python3 10 - , stdenv 11 , which 12 }: 13 14 stdenv.mkDerivation (finalAttrs: { 15 pname = "cppcheck"; 16 - version = "2.12.0"; 17 18 outputs = [ "out" "man" ]; 19 ··· 21 owner = "danmar"; 22 repo = "cppcheck"; 23 rev = finalAttrs.version; 24 - hash = "sha256-Rfm63ERmTsmmH8W6aiBMx+NiQjzGuoWHqHRRqWishhw="; 25 }; 26 27 nativeBuildInputs = [
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + 5 + , docbook_xml_dtd_45 6 , docbook_xsl 7 , installShellFiles 8 , libxslt 9 , pcre 10 , pkg-config 11 , python3 12 , which 13 }: 14 15 stdenv.mkDerivation (finalAttrs: { 16 pname = "cppcheck"; 17 + version = "2.12.1"; 18 19 outputs = [ "out" "man" ]; 20 ··· 22 owner = "danmar"; 23 repo = "cppcheck"; 24 rev = finalAttrs.version; 25 + hash = "sha256-I1z4OZaWUD1sqPf7Z0ISoRl5mrGTFq0l5u2ct29fOmQ="; 26 }; 27 28 nativeBuildInputs = [