summary refs log tree commit diff
path: root/pkgs/development/libraries/libwebsockets/default.nix
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-05-11 04:21:19 -0700
committerobadz <obadz-git@obadz.com>2018-05-12 13:43:04 +0200
commit5f41c98f89855d69c838e26f1e2effdb0d43973d (patch)
treee5e138c374e06200a0c3bf4448338a01593dd9ca /pkgs/development/libraries/libwebsockets/default.nix
parent578d3a81aca532fd45f07ac24e6a7cfa1f5ec31a (diff)
downloadnixpkgs-5f41c98f89855d69c838e26f1e2effdb0d43973d.tar
nixpkgs-5f41c98f89855d69c838e26f1e2effdb0d43973d.tar.gz
nixpkgs-5f41c98f89855d69c838e26f1e2effdb0d43973d.tar.bz2
nixpkgs-5f41c98f89855d69c838e26f1e2effdb0d43973d.tar.lz
nixpkgs-5f41c98f89855d69c838e26f1e2effdb0d43973d.tar.xz
nixpkgs-5f41c98f89855d69c838e26f1e2effdb0d43973d.tar.zst
nixpkgs-5f41c98f89855d69c838e26f1e2effdb0d43973d.zip
libwebsockets: 2.4.2 -> 3.0.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libwebsockets/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.)
- found 3.0.0 with grep in /nix/store/m8jcyxq9zxn19vzwmvy8jld4kmjcwnmj-libwebsockets-3.0.0
- directory tree listing: https://gist.github.com/3fda3b4331b75bec575d1a71ba21e84a
Diffstat (limited to 'pkgs/development/libraries/libwebsockets/default.nix')
-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 3bc04f9ae3d..1147c9606ad 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.2";
+  version = "3.0.0";
 
   src = fetchFromGitHub {
     owner = "warmcat";
     repo = "libwebsockets";
     rev = "v${version}";
-    sha256 = "0gbprzsi054f9gr31ihcf0cq7zfkybrmdp6894pmzb5hcv4wnh9i";
+    sha256 = "0cz4f05qd9b2bm27h5pkwym2cl7ff73lgirzwjppwf9b18if58yv";
   };
 
   buildInputs = [ cmake openssl zlib libuv ];