mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
rebuilderd: 0.25.0 -> 0.27.0
https://github.com/kpcyrd/rebuilderd/releases/tag/v0.26.0 https://github.com/kpcyrd/rebuilderd/releases/tag/v0.27.0
This commit is contained in:
parent
e4ade1db48
commit
03f4820c62
2 changed files with 12 additions and 3 deletions
|
|
@ -43,6 +43,8 @@
|
|||
[pnpm `fetcherVersion` section](#javascript-pnpm-fetcherVersion) of the manual
|
||||
for details.
|
||||
|
||||
- `rebuilderd` has been updated to 0.27.0 introducing breaking changes. See upstream changelog for details: [0.26.0](https://github.com/kpcyrd/rebuilderd/releases/tag/v0.26.0), [0.27.0](https://github.com/kpcyrd/rebuilderd/releases/tag/v0.27.0)
|
||||
|
||||
## Other Notable Changes {#sec-nixpkgs-release-26.11-notable-changes}
|
||||
|
||||
<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
installShellFiles,
|
||||
scdoc,
|
||||
bzip2,
|
||||
cacert,
|
||||
openssl,
|
||||
sqlite,
|
||||
xz,
|
||||
|
|
@ -20,13 +21,13 @@
|
|||
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "rebuilderd";
|
||||
version = "0.25.0";
|
||||
version = "0.27.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kpcyrd";
|
||||
repo = "rebuilderd";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-BuL9s3ewZ1NvR9GG51TVrAncB0PR78Wuw8by+loSP8Q=";
|
||||
hash = "sha256-f+WfmkV0P4VfaOXxX3t5t9g/uJYCh2A587HEq9OK5QU=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
|
@ -40,7 +41,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
--replace-fail '/bin/echo' 'echo'
|
||||
'';
|
||||
|
||||
cargoHash = "sha256-4M5uWgksYsV8PGe0zn9ADv06q3Ga/GVoQ8HjS7GCnwo=";
|
||||
cargoHash = "sha256-se5u7+SF3fW5WqdUA3qmztUw5oPa0YXbgOp9GIVOQu0=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
|
|
@ -80,6 +81,12 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
done
|
||||
'';
|
||||
|
||||
preCheck = ''
|
||||
export SSL_CERT_FILE=${cacert.out}/etc/ssl/certs/ca-bundle.crt
|
||||
'';
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
checkFlags = [
|
||||
# Failing tests
|
||||
"--skip=decompress::tests::decompress_bzip2_compression"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue