summary refs log tree commit diff
path: root/pkgs/development/libraries/libwebsockets
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-14 19:19:59 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-14 19:19:59 -0700
commit1d93c684d57a2ca666f81f579f3850419ccb9551 (patch)
treec0416a0ad12ec2959fcbfd690c029ee93cd7d915 /pkgs/development/libraries/libwebsockets
parentba816ee08721d0c2f5f7e6652091bed085ac7687 (diff)
downloadnixpkgs-1d93c684d57a2ca666f81f579f3850419ccb9551.tar
nixpkgs-1d93c684d57a2ca666f81f579f3850419ccb9551.tar.gz
nixpkgs-1d93c684d57a2ca666f81f579f3850419ccb9551.tar.bz2
nixpkgs-1d93c684d57a2ca666f81f579f3850419ccb9551.tar.lz
nixpkgs-1d93c684d57a2ca666f81f579f3850419ccb9551.tar.xz
nixpkgs-1d93c684d57a2ca666f81f579f3850419ccb9551.tar.zst
nixpkgs-1d93c684d57a2ca666f81f579f3850419ccb9551.zip
libwebsockets: 2.4.1 -> 2.4.2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. 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.)
- found 2.4.2 with grep in /nix/store/y3zmgw1wy80xwfmjx8d97nvrr5qfzrmp-libwebsockets-2.4.2
- found 2.4.2 in filename of file in /nix/store/y3zmgw1wy80xwfmjx8d97nvrr5qfzrmp-libwebsockets-2.4.2
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 fa35f7546f5..3bc04f9ae3d 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.4.1";
+  version = "2.4.2";
 
   src = fetchFromGitHub {
     owner = "warmcat";
     repo = "libwebsockets";
     rev = "v${version}";
-    sha256 = "0d3xqdq3hpk5l9cg4dqkba6jm6620y6knqqywya703662spmj2xw";
+    sha256 = "0gbprzsi054f9gr31ihcf0cq7zfkybrmdp6894pmzb5hcv4wnh9i";
   };
 
   buildInputs = [ cmake openssl zlib libuv ];