From f24c4d8a285e3c501d393aada37fedc357c54c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 24 Oct 2022 02:06:49 +0200 Subject: [PATCH 1/2] nixos/changedetection-io: fix typo --- nixos/modules/services/web-apps/changedetection-io.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/changedetection-io.nix b/nixos/modules/services/web-apps/changedetection-io.nix index 6a54311e35ed..ace4cf1eabc9 100644 --- a/nixos/modules/services/web-apps/changedetection-io.nix +++ b/nixos/modules/services/web-apps/changedetection-io.nix @@ -127,7 +127,7 @@ in 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} From feb4be1b9789cf5d5ab90c2267972ab9a7cffc9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 24 Oct 2022 02:08:02 +0200 Subject: [PATCH 2/2] changedetection-io: remove no longer required override --- pkgs/servers/web-apps/changedetection-io/default.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pkgs/servers/web-apps/changedetection-io/default.nix b/pkgs/servers/web-apps/changedetection-io/default.nix index 495da0192706..cd53cf147445 100644 --- a/pkgs/servers/web-apps/changedetection-io/default.nix +++ b/pkgs/servers/web-apps/changedetection-io/default.nix @@ -19,17 +19,6 @@ let "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 {