aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/http-parser
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-05-15 13:16:41 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-05-16 16:12:21 +0200
commit8f2eb1b7ff652513e804817a44e4c40760ae4bd6 (patch)
treea1c33c33d85395eff2547fb5ddb17ca68bddccb3 /pkgs/development/libraries/http-parser
parent26361453689952838856c7a5cb6e60a243e0769b (diff)
http-parser: 2.6.1 -> 2.7.0
Diffstat (limited to 'pkgs/development/libraries/http-parser')
-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 6dd8efddaa65..ddbcc3a26c29 100644
--- a/pkgs/development/libraries/http-parser/default.nix
+++ b/pkgs/development/libraries/http-parser/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, gyp, utillinux, python, fixDarwinDylibNames }:
let
- version = "2.6.1";
+ version = "2.7.0";
in stdenv.mkDerivation {
name = "http-parser-${version}";
src = fetchurl {
url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz";
- sha256 = "1b9ahv77zryx1z6j7sax2asx0gj209wh2244q9crj7hj14h8bkj8";
+ sha256 = "0rqij6v6wv1giwx4prfa082kw1nka5d9vlb06zkc8mwszq1vzidh";
};
patches = [ ./build-shared.patch ];