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
This commit is contained in:
R. RyanTM 2019-01-03 10:03:51 -08:00
parent de96413bbf
commit 5b9ad12e7b

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl }:
let
version = "2.8.1";
version = "2.9.0";
in stdenv.mkDerivation {
name = "http-parser-${version}";
src = fetchurl {
url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz";
sha256 = "15ids8k2f0xhnnxh4m85w2f78pg5ndiwrpl24kyssznnp1l5yqai";
sha256 = "0gv1dhzwlv1anbzrba20l39gzzmz818yv8jbclbls268aj62c9pg";
};
NIX_CFLAGS_COMPILE = "-Wno-error";