about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-07-11 12:02:22 +0200
committerGitHub <noreply@github.com>2018-07-11 12:02:22 +0200
commitb4eaa238c4365662297f62dd53572cc2765db65a (patch)
tree65508cdaff03a53bc8f47df0afd658ae06446825 /pkgs/development
parent537a8bf4fb0a6e534d39ad03434d4158940b4082 (diff)
parent0b1b8a8dc27919db67e816f2d4c863108f8dada0 (diff)
downloadnixlib-b4eaa238c4365662297f62dd53572cc2765db65a.tar
nixlib-b4eaa238c4365662297f62dd53572cc2765db65a.tar.gz
nixlib-b4eaa238c4365662297f62dd53572cc2765db65a.tar.bz2
nixlib-b4eaa238c4365662297f62dd53572cc2765db65a.tar.lz
nixlib-b4eaa238c4365662297f62dd53572cc2765db65a.tar.xz
nixlib-b4eaa238c4365662297f62dd53572cc2765db65a.tar.zst
nixlib-b4eaa238c4365662297f62dd53572cc2765db65a.zip
Merge pull request #43329 from r-ryantm/auto-update/olm
olm: 2.2.1 -> 2.3.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/olm/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/olm/default.nix b/pkgs/development/libraries/olm/default.nix
index 7b10db9245c5..05888ad60bb1 100644
--- a/pkgs/development/libraries/olm/default.nix
+++ b/pkgs/development/libraries/olm/default.nix
@@ -2,17 +2,18 @@
 
 stdenv.mkDerivation rec {
   name = "olm-${version}";
-  version = "2.2.1";
+  version = "2.3.0";
 
   meta = {
     description = "Implements double cryptographic ratchet and Megolm ratchet";
     license = stdenv.lib.licenses.asl20;
     homepage = https://matrix.org/git/olm/about;
+    platforms = stdenv.lib.platforms.linux;
   };
 
   src = fetchurl {
     url = "https://matrix.org/git/olm/snapshot/${name}.tar.gz";
-    sha256 = "1spgsjmsw8afm2hg1mrq9c7cli3p17wl0ns7qbzn0h6ksh193709";
+    sha256 = "1y2yasq94zjw3nadn1915j85xwc5j3pic3brhp0h83l6hkxi8dsk";
   };
 
   doCheck = true;