Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

http-parser: 2.8.1 -> 2.9.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/http-parser/versions

+2 -2
+2 -2
pkgs/development/libraries/http-parser/default.nix
··· 1 1 { stdenv, fetchurl }: 2 2 3 3 let 4 - version = "2.8.1"; 4 + version = "2.9.0"; 5 5 in stdenv.mkDerivation { 6 6 name = "http-parser-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz"; 10 - sha256 = "15ids8k2f0xhnnxh4m85w2f78pg5ndiwrpl24kyssznnp1l5yqai"; 10 + sha256 = "0gv1dhzwlv1anbzrba20l39gzzmz818yv8jbclbls268aj62c9pg"; 11 11 }; 12 12 13 13 NIX_CFLAGS_COMPILE = "-Wno-error";