outline: 0.85.1 -> 0.86.1

This commit is contained in:
Alexander Sieg 2025-08-11 16:41:19 +02:00
parent 2323653633
commit a5d61d0a19
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -14,13 +14,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "outline"; pname = "outline";
version = "0.85.1"; version = "0.86.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "outline"; owner = "outline";
repo = "outline"; repo = "outline";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-lErNsYzxqZYVl1MAQdMk062nBORjQGd3C+UbGbZMzvA="; hash = "sha256-lsiwTpmb9E6C5FuYFfko4PqulDcqWU9sQnzSEJ3Y4NE=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
yarnOfflineCache = fetchYarnDeps { yarnOfflineCache = fetchYarnDeps {
yarnLock = "${src}/yarn.lock"; yarnLock = "${src}/yarn.lock";
hash = "sha256-/CXIZKI8eeK21PRIVZnRMOkwNNbj0vC0PZuT6rZBwG4="; hash = "sha256-9xJ+N+UaHTlBzXvFPyYgB4jNwdiWCkvCSN22kEGuIxI=";
}; };
configurePhase = '' configurePhase = ''

View File

@ -10276,7 +10276,7 @@ with pkgs;
outline = callPackage ../servers/web-apps/outline ( outline = callPackage ../servers/web-apps/outline (
lib.fix (super: { lib.fix (super: {
yarn = yarn.override { inherit (super) nodejs; }; yarn = yarn.override { inherit (super) nodejs; };
nodejs = nodejs_20; nodejs = nodejs_22;
}) })
); );