outline: 0.75.2 -> 0.76.0 (#308307)

This commit is contained in:
Lynn 2024-05-02 12:44:57 +02:00 committed by GitHub
parent 42267611ac
commit 74240dc4f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,6 +3,7 @@
, fetchFromGitHub , fetchFromGitHub
, fetchYarnDeps , fetchYarnDeps
, makeWrapper , makeWrapper
, prefetch-yarn-deps
, fixup-yarn-lock , fixup-yarn-lock
, nodejs , nodejs
, yarn , yarn
@ -11,21 +12,21 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "outline"; pname = "outline";
version = "0.75.2"; version = "0.76.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "outline"; owner = "outline";
repo = "outline"; repo = "outline";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-jK1jZ9NyBl3Dioh/7gXWx6XyyI6xJKt2a/XXzbhllZM="; hash = "sha256-pTu1/7hEYvo/6MuN0yC+nrPCwUYqvcc2hZuiPtVFlwU=";
}; };
nativeBuildInputs = [ makeWrapper fixup-yarn-lock ]; nativeBuildInputs = [ makeWrapper prefetch-yarn-deps fixup-yarn-lock ];
buildInputs = [ yarn nodejs ]; buildInputs = [ yarn nodejs ];
yarnOfflineCache = fetchYarnDeps { yarnOfflineCache = fetchYarnDeps {
yarnLock = "${src}/yarn.lock"; yarnLock = "${src}/yarn.lock";
hash = "sha256-8CfaP5T/pf/xq1lOfdOW4n2m12QLnkLFynHABjZwNiY="; hash = "sha256-10kqC4A9OFrpZzTBJIZ6I5TCOVgpX+h+hwfOWhXdhHs=";
}; };
configurePhase = '' configurePhase = ''