http-parser: 2.9.0 -> 2.9.1

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-04-14 16:56:09 -07:00 committed by Frederik Rietdijk
parent 2a09d0d499
commit 48a941c5a3

View file

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