diff --git a/pkgs/indico/default.nix b/pkgs/indico/default.nix index a0279f6..f92110e 100644 --- a/pkgs/indico/default.nix +++ b/pkgs/indico/default.nix @@ -50,7 +50,7 @@ let }; # TODO PR qTipUpstreamUrl = "git+https://indico@github.com/indico/qTip2.git#8951e5538a5c0833021b2d2b5d8a587a2c24faae"; - qTipLocalUrl = "git+https://github.com/federez-tba/qTip2.git#8d1d579c0aac94333e390f19aa0489c57bf74cf7"; + qTipWithLockUrl = "git+https://indico@github.com/indico/qTip2.git#95a42a3be49767a631310a5a8bd924f386220799"; in python.pkgs.buildPythonApplication rec { pname = "indico"; @@ -90,7 +90,7 @@ python.pkgs.buildPythonApplication rec { npmDeps = fetchNpmDeps { inherit src patches postPatch; pname = "${pname}-${version}-npm-deps"; - hash = "sha256-OeeA2NyRnhlQuSryTmqsLcNNkXde0Vnk21pHddV3aco="; + hash = "sha256-sM+ey/Lu5pJdAFA+k6FvP+apEy/yIRohuZC7kj/tnd8="; }; # FIXME *why* is it required? @@ -127,9 +127,9 @@ python.pkgs.buildPythonApplication rec { --replace-fail "babel==2.16.0" "babel" \ --replace-fail "hatchling==1.25.0" "hatchling" substituteInPlace package.json \ - --replace-fail ${qTipUpstreamUrl} ${qTipLocalUrl} + --replace-fail ${qTipUpstreamUrl} ${qTipWithLockUrl} substituteInPlace package-lock.json \ - --replace-fail ${qTipUpstreamUrl} ${qTipLocalUrl} + --replace-fail ${qTipUpstreamUrl} ${qTipWithLockUrl} # Make the WSGI module importable by Gunicorn # (TODO is there a way to use Gunicorn with a path?) mv indico/web/indico.wsgi indico/web/wsgi.py