nixpkgs/pkgs/development/libraries/olm/default.nix
R. RyanTM 7722c43f0a olm: 2.3.0 -> 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/olm/versions
2018-12-17 23:23:13 +00:00

27 lines
671 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "olm-${version}";
version = "3.0.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 = "1iivxjk458v9lhqgzp0c4k5azligsh9k3rk6irf9ssj29wzgjm2c";
};
doCheck = true;
checkTarget = "test";
# requires optimisation but memory operations are compiled with -O0
hardeningDisable = ["fortify"];
installFlags = "PREFIX=$(out)";
}