mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
olm: 3.0.0 -> 3.1.4
This commit is contained in:
parent
430b7b24d4
commit
58e573d358
@ -2,18 +2,11 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "olm";
|
pname = "olm";
|
||||||
version = "3.0.0";
|
version = "3.1.4";
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Implements double cryptographic ratchet and Megolm ratchet";
|
|
||||||
license = stdenv.lib.licenses.asl20;
|
|
||||||
homepage = https://matrix.org/git/olm/about;
|
|
||||||
platforms = with stdenv.lib.platforms; darwin ++ linux;
|
|
||||||
};
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://matrix.org/git/olm/snapshot/${pname}-${version}.tar.gz";
|
url = "https://matrix.org/git/olm/-/archive/${version}/${pname}-${version}.tar.gz";
|
||||||
sha256 = "1iivxjk458v9lhqgzp0c4k5azligsh9k3rk6irf9ssj29wzgjm2c";
|
sha256 = "0f7azjxc77n4ib9nj3cwyk3vhk8r2dsyf7id6nvqyxqxwxn95a8w";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
@ -25,4 +18,11 @@ stdenv.mkDerivation rec {
|
|||||||
makeFlags = if stdenv.cc.isClang then [ "CC=cc" ] else null;
|
makeFlags = if stdenv.cc.isClang then [ "CC=cc" ] else null;
|
||||||
|
|
||||||
installFlags = "PREFIX=$(out)";
|
installFlags = "PREFIX=$(out)";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Implements double cryptographic ratchet and Megolm ratchet";
|
||||||
|
license = stdenv.lib.licenses.asl20;
|
||||||
|
homepage = https://matrix.org/git/olm/about;
|
||||||
|
platforms = with stdenv.lib.platforms; darwin ++ linux;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user