Merge pull request #197459 from SuperSandro2000/changedetection-typo

Sandro 64f3daf6 cde19b84

Changed files
+1 -12
nixos
modules
services
pkgs
servers
web-apps
changedetection-io
+1 -1
nixos/modules/services/web-apps/changedetection-io.nix
···
defaultStateDir = cfg.datastorePath == "/var/lib/changedetection-io";
in {
services.changedetection-io = {
-
wantedBy = [ "mutli-user.target" ];
+
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
preStart = ''
mkdir -p ${cfg.datastorePath}
-11
pkgs/servers/web-apps/changedetection-io/default.nix
···
"test_redirect"
];
});
-
lxml = prev.lxml.override {
-
libxml2 = prev.libxml2.overrideAttrs (old: rec {
-
# etree.fromstring always returns None with 2.10.0
-
version = "2.9.14";
-
-
src = fetchurl {
-
url = "mirror://gnome/sources/libxml2/${lib.versions.majorMinor version}/libxml2-${version}.tar.xz";
-
sha256 = "sha256-YNdKJX0czsBHXnScui8hVZ5IE577pv8oIkNXx8eY3+4=";
-
};
-
});
-
};
werkzeug = prev.werkzeug.overridePythonAttrs (old: rec {
version = "2.0.3";
src = old.src.override {