Commit Graph

14 Commits

Author SHA1 Message Date
chayleaf
ec45a5b98e
maubot: update plugins 2024-09-02 02:37:38 +07:00
chayleaf
d68b3e05c2
maubot: 0.4.2 -> 0.5.0 2024-09-02 02:37:10 +07:00
Emily
ca59219c43
python3Packages.{mautrix,matrix-nio}: add withOlm flags (#336901) 2024-09-01 15:38:16 +01:00
Philip Taron
ae92f312bf
treewide: use a consistent meta.priority default 2024-08-29 09:04:57 -07:00
Emily
90b75a1f39 python3Packages.mautrix: add withOlm flag
Closes: #336052
2024-08-26 15:51:01 +01:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
chayleaf
374cc16ac8 maubot: update plugins 2024-04-22 18:07:22 +02:00
chayleaf
3a30f5e9a5 maubot: fix missing pkg_resources module 2024-04-22 18:07:22 +02:00
chayleaf
57e3ca7057
nixos/maubot: fix eval with default config 2023-12-08 17:35:11 +07:00
chayleaf
352d3a3ad9
maubot: switch to ensureNewerSourcesForZipFilesHook 2023-11-28 20:35:59 +07:00
chayleaf
e96b8fd970
maubot: add plugins & plugins update script 2023-11-28 19:28:37 +07:00
chayleaf
3601729b71 maubot: 0.4.1 -> 0.4.2 2023-10-08 11:37:45 +07:00
chayleaf
6d643df41e maubot: init at 0.4.1 2023-09-13 11:14:05 +07:00