From b19f40ccac28b4a2a2884879beab5a52c96fa535 Mon Sep 17 00:00:00 2001 From: adisbladis Date: Thu, 30 Dec 2021 12:55:35 -0800 Subject: [PATCH] overrides: Add override to build python-olm --- overrides.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/overrides.nix b/overrides.nix index 8b9f568..6142eef 100644 --- a/overrides.nix +++ b/overrides.nix @@ -1509,6 +1509,12 @@ self: super: } ); + python-olm = super.python-olm.overridePythonAttrs ( + old: { + buildInputs = old.buildInputs or [ ] ++ [ pkgs.olm ]; + } + ); + python-snappy = super.python-snappy.overridePythonAttrs ( old: { buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.snappy ];