spark-wallet: use node package lockfile
This commit is contained in:
parent
3091b0a4fb
commit
f4872f3334
@ -1,5 +1,8 @@
|
|||||||
{ stdenv, pkgs, lib }:
|
{ pkgs }:
|
||||||
lib.head (builtins.attrValues (import ./composition.nix {
|
let
|
||||||
inherit pkgs;
|
nodePackages = import ./composition.nix { inherit pkgs; };
|
||||||
inherit (stdenv.hostPlatform) system;
|
in
|
||||||
}))
|
nodePackages.package.override {
|
||||||
|
# Required because spark-wallet uses `npm-shrinkwrap.json` as the lock file
|
||||||
|
reconstructLock = true;
|
||||||
|
}
|
||||||
|
@ -1,34 +1,49 @@
|
|||||||
#!/usr/bin/env nix-shell
|
#!/usr/bin/env nix-shell
|
||||||
#! nix-shell -i bash -p nodePackages.node2nix gnupg wget jq moreutils
|
#! nix-shell -i bash -p nodePackages.node2nix gnupg wget jq moreutils gnused
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
TMPDIR="$(mktemp -d -p /tmp)"
|
TMPDIR="$(mktemp -d -p /tmp)"
|
||||||
trap "rm -rf $TMPDIR" EXIT
|
trap "rm -rf $TMPDIR" EXIT
|
||||||
|
|
||||||
# Get/verify spark-wallet-npm.tgz
|
|
||||||
version="0.3.1"
|
version="0.3.1"
|
||||||
|
repo=https://github.com/shesek/spark-wallet
|
||||||
|
|
||||||
|
# Fetch and verify source tarball
|
||||||
|
file=spark-wallet-${version}-npm.tgz
|
||||||
|
url=$repo/releases/download/v$version/$file
|
||||||
export GNUPGHOME=$TMPDIR
|
export GNUPGHOME=$TMPDIR
|
||||||
gpg --keyserver hkps://keyserver.ubuntu.com --recv-key FCF19B67866562F08A43AAD681F6104CD0F150FC
|
gpg --keyserver hkps://keyserver.ubuntu.com --recv-key FCF19B67866562F08A43AAD681F6104CD0F150FC
|
||||||
wget -P $TMPDIR https://github.com/shesek/spark-wallet/releases/download/v${version}/SHA256SUMS.asc
|
wget -P $TMPDIR $url
|
||||||
wget -P $TMPDIR https://github.com/shesek/spark-wallet/releases/download/v${version}/spark-wallet-${version}-npm.tgz
|
wget -P $TMPDIR $repo/releases/download/v$version/SHA256SUMS.asc
|
||||||
(cd $TMPDIR; gpg --verify $TMPDIR/SHA256SUMS.asc; sha256sum -c --ignore-missing $TMPDIR/SHA256SUMS.asc)
|
gpg --verify $TMPDIR/SHA256SUMS.asc
|
||||||
shasum=$(sha256sum $TMPDIR/spark-wallet-${version}-npm.tgz | cut -d\ -f1)
|
(cd $TMPDIR; sha256sum --check --ignore-missing SHA256SUMS.asc)
|
||||||
|
hash=$(nix hash file $TMPDIR/$file)
|
||||||
|
|
||||||
|
# Extract source
|
||||||
|
src=$TMPDIR/src
|
||||||
|
mkdir $src
|
||||||
|
tar xvf $TMPDIR/$file -C $src --strip-components 1 >/dev/null
|
||||||
|
|
||||||
# Make qrcode-terminal a strict dependency so that node2nix includes it in the package derivation.
|
# Make qrcode-terminal a strict dependency so that node2nix includes it in the package derivation.
|
||||||
tar xvf $TMPDIR/spark-wallet-*-npm.tgz -C $TMPDIR
|
jq '.dependencies["qrcode-terminal"] = .optionalDependencies["qrcode-terminal"]' $src/package.json | sponge $src/package.json
|
||||||
jq '.dependencies["qrcode-terminal"] = .optionalDependencies["qrcode-terminal"]' $TMPDIR/package/package.json | sponge $TMPDIR/package/package.json
|
|
||||||
|
|
||||||
# Run node2nix
|
# Generate nix pkg
|
||||||
cp pkg.json $TMPDIR/pkg.json
|
node2nix \
|
||||||
node2nix --nodejs-10 -i $TMPDIR/pkg.json -c composition.nix --no-copy-node-env
|
--nodejs-10 \
|
||||||
|
--input $src/package.json \
|
||||||
|
--lock $src/npm-shrinkwrap.json \
|
||||||
|
--composition composition.nix \
|
||||||
|
--no-copy-node-env
|
||||||
|
|
||||||
# Set node env import.
|
# Use node-env.nix from nixpkgs
|
||||||
# The reason for not providing a custom node-env.nix file is the following:
|
|
||||||
# To be flakes-compatible, we have to locate the nixpgs source via `pkgs.path` instead of `<nixpkgs>`.
|
|
||||||
# This requires the `pkgs` variable which is available only in composition.nix, not in node-env.nix.
|
|
||||||
nodeEnvImport='import "${toString pkgs.path}/pkgs/development/node-packages/node-env.nix"'
|
nodeEnvImport='import "${toString pkgs.path}/pkgs/development/node-packages/node-env.nix"'
|
||||||
sed -i "s|import ./node-env.nix|$nodeEnvImport|" composition.nix
|
sed -i "s|import ./node-env.nix|$nodeEnvImport|" composition.nix
|
||||||
|
|
||||||
# Use verified source in node-packages.nix
|
# Use the verified package src
|
||||||
url="https://github.com/shesek/spark-wallet/releases/download/v$version/spark-wallet-$version-npm.tgz"
|
read -d '' fetchurl <<EOF || :
|
||||||
sed -i '/packageName = "spark-wallet";/!b;n;n;c\ src = fetchurl {\n url = "'$url'";\n sha256 = "'$shasum'";\n };' node-packages.nix
|
fetchurl {
|
||||||
|
url = "$url";
|
||||||
|
hash = "$hash";
|
||||||
|
};
|
||||||
|
EOF
|
||||||
|
sed -i "s|src = .*/src;|src = ${fetchurl//$'\n'/\\n}|" node-packages.nix
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,3 +0,0 @@
|
|||||||
[
|
|
||||||
{ "spark-wallet": "file:./package" }
|
|
||||||
]
|
|
Loading…
Reference in New Issue
Block a user