-
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.
taler-wallet-core: init at 0.10.7 (#198)
- Loading branch information
Showing
1 changed file
with
138 additions
and
0 deletions.
There are no files selected for viewing
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,138 @@ | ||
{ | ||
lib, | ||
stdenv, | ||
esbuild, | ||
buildGoModule, | ||
fetchFromGitHub, | ||
fetchgit, | ||
git, | ||
jq, | ||
moreutils, | ||
nodePackages, | ||
cacert, | ||
python3, | ||
zip, | ||
}: let | ||
esbuild_0_19_9 = buildGoModule rec { | ||
pname = "esbuild"; | ||
version = "0.19.9"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "evanw"; | ||
repo = "esbuild"; | ||
rev = "v${version}"; | ||
hash = "sha256-GiQTB/P+7uVGZfUaeM7S/5lGvfHlTl/cFt7XbNfE0qw="; | ||
}; | ||
vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ="; | ||
|
||
subPackages = ["cmd/esbuild"]; | ||
|
||
ldflags = [ | ||
"-s" | ||
"-w" | ||
]; | ||
|
||
meta = { | ||
description = "An extremely fast JavaScript bundler"; | ||
homepage = "https://esbuild.github.io"; | ||
license = lib.licenses.mit; | ||
mainProgram = "esbuild"; | ||
}; | ||
}; | ||
taler-wallet-core-pnpm-deps = stdenv.mkDerivation rec { | ||
pname = "taler-wallet-core-pnpm-deps"; | ||
version = "0.10.7"; | ||
|
||
src = fetchgit { | ||
url = "https://git.taler.net/wallet-core.git"; | ||
rev = "v${version}"; | ||
hash = "sha256-eKUuzw25Z7EYkk6YaFKAnRYuB04QC3swjn8tGm8uQNk="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
jq | ||
moreutils | ||
nodePackages.pnpm | ||
cacert | ||
]; | ||
|
||
dontBuild = true; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
export HOME=$(mktemp -d) | ||
pnpm config set store-dir $out | ||
pnpm install --frozen-lockfile --ignore-script | ||
rm -rf $out/v3/tmp | ||
for f in $(find $out -name "*.json"); do | ||
sed -i -E -e 's/"checkedAt":[0-9]+,//g' $f | ||
jq --sort-keys . $f | sponge $f | ||
done | ||
runHook postInstall | ||
''; | ||
|
||
dontFixup = true; | ||
|
||
outputHashMode = "recursive"; | ||
outputHash = | ||
{ | ||
x86_64-linux = "sha256-pJrezaEDx7e8qZMICSQmtCwlA9RNObbrFYsnPd3Ag8Y="; | ||
aarch64-linux = "sha256-48YXhLFbCsL0UqfrOI6a6MqJl0UpqQbMtbKsw6rjhcU="; | ||
} | ||
.${stdenv.system} | ||
or (throw "Unsupported system: ${stdenv.system}"); | ||
}; | ||
in | ||
stdenv.mkDerivation { | ||
pname = "taler-wallet-core"; | ||
inherit (taler-wallet-core-pnpm-deps) version src; | ||
|
||
nativeBuildInputs = [ | ||
git | ||
jq | ||
nodePackages.nodejs | ||
nodePackages.pnpm | ||
python3 | ||
zip | ||
]; | ||
|
||
buildInputs = [nodePackages.nodejs]; | ||
|
||
postUnpack = '' | ||
git init -b master | ||
git config user.email "root@localhost" | ||
git config user.name "root" | ||
git commit --allow-empty -m "Initial commit" | ||
''; | ||
|
||
postPatch = '' | ||
patchShebangs packages/*/*.mjs | ||
substituteInPlace pnpm-lock.yaml \ | ||
--replace-fail "esbuild: 0.12.29" "esbuild: ${esbuild_0_19_9.version}" | ||
''; | ||
|
||
preConfigure = '' | ||
./bootstrap | ||
''; | ||
|
||
preBuild = '' | ||
export HOME=$(mktemp -d) | ||
pnpm config set store-dir ${taler-wallet-core-pnpm-deps} | ||
pnpm install --offline --frozen-lockfile --ignore-script | ||
patchShebangs node_modules/{*,.*} | ||
''; | ||
|
||
env.ESBUILD_BINARY_PATH = lib.getExe esbuild_0_19_9; | ||
|
||
meta = { | ||
description = "A wallet for GNU Taler written in TypeScript and Anastasis Web UI"; | ||
homepage = "https://git.taler.net/wallet-core.git/"; | ||
license = lib.licenses.gpl3Plus; | ||
platforms = lib.platforms.linux; | ||
}; | ||
} |