outline: 0.65.2 -> 0.66.1

Also pinned supplied nodejs version to 16_x
It does utilize local overlay-like structure to make it easier to
override node version, without getting actual overlays involved.

Co-authored-by: Yannik Rödel <1820447+yrd@users.noreply.github.com>
This commit is contained in:
cab 2022-09-05 19:07:23 +04:00
parent c6cd5022d5
commit 1f3937158b
No known key found for this signature in database
GPG Key ID: 08AA9711F8CD40CF
4 changed files with 1999 additions and 1692 deletions

View File

@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "outline";
version = "0.65.2";
version = "0.66.1";
src = fetchFromGitHub {
owner = "outline";
repo = "outline";
rev = "v${version}";
sha256 = "sha256-a9K6nMgg1j93BPiy03M86dDecXv/J47vUaqHH3S6DOs=";
sha256 = "sha256-pK/rrGAL9JKt52jQRVtbQgPPe644anOARUNOhPCUCqE=";
};
nativeBuildInputs = [ makeWrapper yarn2nix-moretea.fixup_yarn_lock ];

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -23041,7 +23041,11 @@ with pkgs;
onlyoffice-documentserver = callPackage ../servers/onlyoffice-documentserver { };
outline = callPackage ../servers/web-apps/outline { };
outline = callPackage ../servers/web-apps/outline (lib.fix (super: {
yarn2nix-moretea = yarn2nix-moretea.override { inherit (super) nodejs yarn; };
yarn = yarn.override { inherit (super) nodejs; };
nodejs = nodejs-16_x;
}));
openbgpd = callPackage ../servers/openbgpd { };