summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominique Martinet @ jormungand <asmadeus@codewreck.org>2021-05-23 12:09:07 +0200
committerDominique Martinet @ jormungand <asmadeus@codewreck.org>2021-05-25 14:12:13 +0200
commit25cdf02d7fa4b217846827b9b21778df77f3b050 (patch)
treec113817d52033aa821b6c88016ac4f4c5eabb7f0
parente5555779c07b94589bc0aa8dee7a201327a8ab6c (diff)
matrirc: update to master
-rw-r--r--pkgs/matrirc/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/matrirc/default.nix b/pkgs/matrirc/default.nix
index c730f06..56827b5 100644
--- a/pkgs/matrirc/default.nix
+++ b/pkgs/matrirc/default.nix
@@ -1,5 +1,5 @@
{ stdenv, rustPlatform, fetchFromGitHub,
- pkgconfig, openssl
+ pkgconfig, openssl, cmake,
}:
rustPlatform.buildRustPackage rec {
@@ -8,16 +8,17 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "martinetd";
repo = "matrirc";
- rev = "b286f39006435023d64cb31e78d5c87609aa57ec";
- sha256 = "0msl3y5pgx4nsj6z7xfxjfhgbpif55g02f91zvprqhf479aclm71";
+ rev = "c8e10b517ccc670ee54ea8700680f61885743147";
+ sha256 = "sha256-2E3MjP4XATLE7FUSaPF1Anmy8KkrPWawUFpMhcoePaE=";
};
- cargoSha256 = "1ch48zcdkxz4sv4pmgmmx9s9cc6xsdmk058z1q8flj56xnwxq3fh";
+ cargoSha256 = "sha256-VJPLdTjGgFSsPYBgV1e5ImyybO+k5ft/J3OQX2AiyXk=";
- nativeBuildInputs = [ pkgconfig ];
+ # cmake required for olm-sys
+ nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ openssl ];
# no check anyway, save some time
- # XXX enable next time update doCheck = false;
+ doCheck = false;
meta = with stdenv.lib; {
description = "Yet another irc to matrix gateway";