Skip to content

Commit

Permalink
olm: init at 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
non-Jedi authored and fpletz committed Feb 10, 2017
1 parent a5e041a commit 4000489
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/libraries/olm/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "olm-${version}";
version = "2.2.1";

meta = {
description = "Implements double cryptographic ratchet and Megolm ratchet";
license = stdenv.lib.licenses.asl20;
homepage = "https://matrix.org/git/olm/about";
};

src = fetchurl {
url = "https://matrix.org/git/olm/snapshot/${name}.tar.gz";
sha256 = "1spgsjmsw8afm2hg1mrq9c7cli3p17wl0ns7qbzn0h6ksh193709";
};

doCheck = true;
checkTarget = "test";

installFlags = "PREFIX=$(out)";
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8947,6 +8947,8 @@ with pkgs;

ogrepaged = callPackage ../development/libraries/ogrepaged { };

olm = callPackage ../development/libraries/olm { };

oniguruma = callPackage ../development/libraries/oniguruma { };

openal = self.openalSoft;
Expand Down

0 comments on commit 4000489

Please sign in to comment.