about summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-04-02 11:12:15 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-04-02 11:12:15 -0700
commit162224942f6f8165d5fce36c1695cc7015e58178 (patch)
tree1022118de7235ecdc0192a850bc83bb95b468498
parenta7af5d4f88f9e30bc9b401a84b7cb3cf036fccbb (diff)
downloadnixlib-162224942f6f8165d5fce36c1695cc7015e58178.tar
nixlib-162224942f6f8165d5fce36c1695cc7015e58178.tar.gz
nixlib-162224942f6f8165d5fce36c1695cc7015e58178.tar.bz2
nixlib-162224942f6f8165d5fce36c1695cc7015e58178.tar.lz
nixlib-162224942f6f8165d5fce36c1695cc7015e58178.tar.xz
nixlib-162224942f6f8165d5fce36c1695cc7015e58178.tar.zst
nixlib-162224942f6f8165d5fce36c1695cc7015e58178.zip
http-parser: 2.8.0 -> 2.8.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.

These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- directory tree listing: https://gist.github.com/e3b01495c51d0693ee8c9d07b2b46ac5
-rw-r--r--pkgs/development/libraries/http-parser/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/http-parser/default.nix b/pkgs/development/libraries/http-parser/default.nix
index b17fc48c7e9a..5d4eae4e0639 100644
--- a/pkgs/development/libraries/http-parser/default.nix
+++ b/pkgs/development/libraries/http-parser/default.nix
@@ -1,13 +1,13 @@
 { stdenv, fetchurl, python2Packages, utillinux, fixDarwinDylibNames }:
 
 let
-  version = "2.8.0";
+  version = "2.8.1";
 in stdenv.mkDerivation {
   name = "http-parser-${version}";
 
   src = fetchurl {
     url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz";
-    sha256 = "17a7k3nxv2p1sp2x5d89wr51vk770753vz6qnlp2gz7nkgwwcxvj";
+    sha256 = "15ids8k2f0xhnnxh4m85w2f78pg5ndiwrpl24kyssznnp1l5yqai";
   };
 
   patches = [ ./build-shared.patch ];