summary refs log tree commit diff
path: root/pkgs/development/libraries/libwebsockets
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-26 21:28:40 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-26 21:28:40 -0800
commit221f93779d354455383e19ba76bbb064471c6772 (patch)
treec66a35276b0dea36929f83770b786e2620556f12 /pkgs/development/libraries/libwebsockets
parentb63297b203e28f13ce7801c578afa30709cb4edd (diff)
downloadnixpkgs-221f93779d354455383e19ba76bbb064471c6772.tar
nixpkgs-221f93779d354455383e19ba76bbb064471c6772.tar.gz
nixpkgs-221f93779d354455383e19ba76bbb064471c6772.tar.bz2
nixpkgs-221f93779d354455383e19ba76bbb064471c6772.tar.lz
nixpkgs-221f93779d354455383e19ba76bbb064471c6772.tar.xz
nixpkgs-221f93779d354455383e19ba76bbb064471c6772.tar.zst
nixpkgs-221f93779d354455383e19ba76bbb064471c6772.zip
libwebsockets: 2.3.0 -> 2.4.1
Semi-automatic update. These checks were performed:

- built on NixOS
- found 2.4.1 with grep in /nix/store/lm20nl7bdr3fmnagp48b4a7pjagv5qdf-libwebsockets-2.4.1
- found 2.4.1 in filename of file in /nix/store/lm20nl7bdr3fmnagp48b4a7pjagv5qdf-libwebsockets-2.4.1

cc ""
Diffstat (limited to 'pkgs/development/libraries/libwebsockets')
-rw-r--r--pkgs/development/libraries/libwebsockets/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libwebsockets/default.nix b/pkgs/development/libraries/libwebsockets/default.nix
index 98f3ea1679c..fa35f7546f5 100644
--- a/pkgs/development/libraries/libwebsockets/default.nix
+++ b/pkgs/development/libraries/libwebsockets/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "libwebsockets-${version}";
-  version = "2.3.0";
+  version = "2.4.1";
 
   src = fetchFromGitHub {
     owner = "warmcat";
     repo = "libwebsockets";
     rev = "v${version}";
-    sha256 = "1hv2b5r6sg42xnqhm4ysjvyiz3cqpfmwaqm33vpbx0k7arj4ixvy";
+    sha256 = "0d3xqdq3hpk5l9cg4dqkba6jm6620y6knqqywya703662spmj2xw";
   };
 
   buildInputs = [ cmake openssl zlib libuv ];