mirror of
https://github.com/matter-labs/nixsgx.git
synced 2025-07-23 00:04:47 +02:00
feat: initial commit
Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
parent
6fe41c9723
commit
1054e3dbe4
51 changed files with 3521 additions and 1 deletions
18
packages/nodejs/update-keyring
Executable file
18
packages/nodejs/update-keyring
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#! nix-shell --pure -i bash -p coreutils findutils gnupg curl
|
||||
|
||||
# https://github.com/nodejs/node#release-team
|
||||
HOME=`mktemp -d`
|
||||
keyserver="pool.sks-keyservers.net"
|
||||
cat << EOF | xargs -P 4 -n 1 gpg --keyserver $keyserver --recv-keys
|
||||
94AE36675C464D64BAFA68DD7434390BDBE9B9C5
|
||||
FD3A5288F042B6850C66B31F09FE44734EB7990E
|
||||
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1
|
||||
DD8F2338BAE7501E3DD5AC78C273792F7D83545D
|
||||
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8
|
||||
B9AE9905FFD7803F25714661B63B535A4C206CA9
|
||||
56730D5401028683275BD23C23EFEFE93C4CFFFE
|
||||
77984A986EBC2AA786BC0F66B01FBB92821C587A
|
||||
EOF
|
||||
|
||||
gpg -a --export > nodejs-release-keys.asc
|
Loading…
Add table
Add a link
Reference in a new issue