summary refs log tree commit diff
path: root/pkgs/development/libraries/http-parser
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2019-04-23 12:50:40 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2019-04-23 12:53:08 +0800
commit4805e959aaf333648f293c76b66f1d0c9929dfc1 (patch)
tree88bb35b6da731f45c768991860ef4725222fb354 /pkgs/development/libraries/http-parser
parent60b382822f4db891eaecad0ccab5c1eedc8d622f (diff)
downloadnixpkgs-4805e959aaf333648f293c76b66f1d0c9929dfc1.tar
nixpkgs-4805e959aaf333648f293c76b66f1d0c9929dfc1.tar.gz
nixpkgs-4805e959aaf333648f293c76b66f1d0c9929dfc1.tar.bz2
nixpkgs-4805e959aaf333648f293c76b66f1d0c9929dfc1.tar.lz
nixpkgs-4805e959aaf333648f293c76b66f1d0c9929dfc1.tar.xz
nixpkgs-4805e959aaf333648f293c76b66f1d0c9929dfc1.tar.zst
nixpkgs-4805e959aaf333648f293c76b66f1d0c9929dfc1.zip
http-parser: 2.9.1 -> 2.9.2
Diffstat (limited to 'pkgs/development/libraries/http-parser')
-rw-r--r--pkgs/development/libraries/http-parser/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/development/libraries/http-parser/default.nix b/pkgs/development/libraries/http-parser/default.nix
index d63911ad24f..68bf4ebec34 100644
--- a/pkgs/development/libraries/http-parser/default.nix
+++ b/pkgs/development/libraries/http-parser/default.nix
@@ -1,13 +1,15 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchFromGitHub }:
 
 let
-  version = "2.9.1";
+  version = "2.9.2";
 in stdenv.mkDerivation {
   name = "http-parser-${version}";
 
-  src = fetchurl {
-    url = "https://github.com/joyent/http-parser/archive/v${version}.tar.gz";
-    sha256 = "08fypqh3jkwvlznvmwwwir53ffg2xcxy0v8bjz6wxjlb41qhf8ik";
+  src = fetchFromGitHub {
+    owner = "nodejs";
+    repo = "http-parser";
+    rev = "v${version}";
+    sha256 = "1qs6x3n2nrcj1wiik5pg5i16inykf7rcfdfdy7rwyzf40pvdl3c2";
   };
 
   NIX_CFLAGS_COMPILE = "-Wno-error";
@@ -19,7 +21,7 @@ in stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "An HTTP message parser written in C";
-    homepage = https://github.com/joyent/http-parser;
+    homepage = https://github.com/nodejs/http-parser;
     maintainers = with maintainers; [ matthewbauer ];
     license = licenses.mit;
     platforms = platforms.unix;