matrix-hookshot: 3.0.0 -> 3.0.1
https://github.com/matrix-org/matrix-hookshot/releases/tag/3.0.1
This commit is contained in:
parent
c9ece0059f
commit
49c4f0707b
4 changed files with 9 additions and 6 deletions
|
@ -35,7 +35,7 @@ mkYarnPackage rec {
|
||||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||||
inherit src;
|
inherit src;
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
hash = "sha256-bxDqv7KofinDuYDB1F0ZKWUQnz+ErU+OZc6i77nzM9Q=";
|
sha256 = data.cargoHash;
|
||||||
};
|
};
|
||||||
|
|
||||||
packageResolutions = {
|
packageResolutions = {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "matrix-hookshot",
|
"name": "matrix-hookshot",
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.",
|
"description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.",
|
||||||
"main": "lib/app.js",
|
"main": "lib/app.js",
|
||||||
"repository": "https://github.com/matrix-org/matrix-hookshot",
|
"repository": "https://github.com/matrix-org/matrix-hookshot",
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"srcHash": "2fuDV2h97VdBADygMeyk2B5etFKkQdNZeOWlhMD4hJk=",
|
"srcHash": "GQfQWOyiI/rxRsj9GYoc2wPaG8phl+2d9Hulxrar5Jc=",
|
||||||
"yarnHash": "0ivizv90wrbz583xjvbakv6vg782h7pjm5zbm8wb9qkpnj735avz"
|
"yarnHash": "0ivizv90wrbz583xjvbakv6vg782h7pjm5zbm8wb9qkpnj735avz",
|
||||||
|
"cargoHash": "/yEupeMwzTh/Ujbh2mPXXQbUCajFK/yl1QM3XmFS/Cc="
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,10 +26,12 @@ yarn_hash=$(prefetch-yarn-deps yarn.lock)
|
||||||
popd
|
popd
|
||||||
|
|
||||||
curl -O "$src/package.json"
|
curl -O "$src/package.json"
|
||||||
|
# There is no prefetcher for the cargo hash, but care should still be taken to update it
|
||||||
cat > pin.json << EOF
|
cat > pin.json << EOF
|
||||||
{
|
{
|
||||||
"version": "$version",
|
"version": "$version",
|
||||||
"srcHash": "$src_hash",
|
"srcHash": "$src_hash",
|
||||||
"yarnHash": "$yarn_hash"
|
"yarnHash": "$yarn_hash",
|
||||||
|
"cargoHash": "0000000000000000000000000000000000000000000000000000"
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in a new issue