-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d5507c
commit d517ceb
Showing
6 changed files
with
17,814 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml | ||
index e7dd4448a..d0068dab8 100644 | ||
--- a/pnpm-lock.yaml | ||
+++ b/pnpm-lock.yaml | ||
@@ -5108,7 +5108,7 @@ packages: | ||
dependencies: | ||
'@babel/core': 7.22.1 | ||
'@linaria/babel-preset': 3.0.0-beta.23 | ||
- esbuild: 0.12.29 | ||
+ esbuild: 0.17.19 | ||
transitivePeerDependencies: | ||
- supports-color | ||
dev: true | ||
@@ -9192,11 +9192,6 @@ packages: | ||
resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} | ||
dev: true | ||
|
||
- /[email protected]: | ||
- resolution: {integrity: sha512-w/XuoBCSwepyiZtIRsKsetiLDUVGPVw1E/R3VTFSecIy8UR7Cq3SOtwKHJMFoVqqVG36aGkzh4e8BvpO1Fdc7g==} | ||
- requiresBuild: true | ||
- dev: true | ||
- | ||
/[email protected]: | ||
resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} | ||
engines: {node: '>=12'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff --git a/bootstrap b/bootstrap | ||
index 217bba297..143674d11 100755 | ||
--- a/bootstrap | ||
+++ b/bootstrap | ||
@@ -5,13 +5,6 @@ | ||
|
||
set -eu | ||
|
||
-if ! git --version >/dev/null; then | ||
- echo "git not installed" | ||
- exit 1 | ||
-fi | ||
- | ||
-git submodule update --init | ||
- | ||
copy_configure() { | ||
src=$1 | ||
dst=$2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
fetchgit, | ||
lib, | ||
jq, | ||
nodejs_18, | ||
python3, | ||
zip, | ||
callPackage, | ||
mkPnpmPackage, | ||
}: let | ||
pname = "wallet-core"; | ||
version = "0.9.3"; | ||
|
||
patches = [ | ||
./no-git-bootstrap.patch | ||
./fix-broken-esbuild.patch | ||
]; | ||
|
||
src = fetchgit { | ||
url = "https://git.taler.net/wallet-core.git"; | ||
rev = "v${version}"; | ||
hash = "sha256-9skF2jPkODnREFM9FOMroCjlkbVQ2V9SfiqGvhUbgvc="; | ||
fetchSubmodules = true; | ||
leaveDotGit = true; # Required for correct submodule fetching | ||
# Delete .git folder for reproducibility (otherwise, the hash changes unexpectedly after fetching submodules) | ||
postFetch = '' | ||
( | ||
cd $out | ||
rm -rf .git | ||
) | ||
''; | ||
}; | ||
|
||
nodejs = nodejs_18; | ||
in | ||
mkPnpmPackage { | ||
inherit nodejs patches pname src version; | ||
|
||
pnpm = nodejs.pkgs.pnpm; | ||
|
||
# This is the lockfile with './fix-broken-esbuild.patch' applied | ||
# mkPnpmPackage does not apply the patch even if we pass the patches. | ||
pnpmLockYaml = ./. + "/pnpm-lock.yaml"; | ||
|
||
script = "compile --offline"; | ||
} |
Oops, something went wrong.