overrides: Add override to build python-olm

This commit is contained in:
adisbladis 2021-12-30 12:55:35 -08:00
parent 05e7fee42c
commit b19f40ccac

View file

@ -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 ];