Bluesky PDS was trying to remove a specific version of atproto. This meant that as the version was bumped, the build would break. If we use find to check the right version to remove, this won't break anymore unless the build does actually need to change
+2
-1
packetmix/packages/bluesky-pds/default.nix
+2
-1
packetmix/packages/bluesky-pds/default.nix
···
79
79
package =
80
80
{
81
81
system,
82
+
findutils,
82
83
...
83
84
}:
84
85
config.inputs.nixos-unstable.result.${system}.bluesky-pds.overrideAttrs {
85
86
postBuild = ''
86
-
atproto_pds_dir=$(${pkgs.findutils}/bin/find node_modules/.pnpm -maxdepth 1 -name "@atproto+pds@*")
87
+
atproto_pds_dir=$(${findutils}/bin/find node_modules/.pnpm -maxdepth 1 -name "@atproto+pds@*")
87
88
rm -r $atproto_pds_dir
88
89
mkdir -p $atproto_pds_dir
89
90
ln -s ${
History
2 rounds
0 comments
a.starrysky.fyi
submitted
#1
1 commit
expand
collapse
fix(pm/bluesky): genericize build
Bluesky PDS was trying to remove a specific version of atproto. This
meant that as the version was bumped, the build would break. If we use
find to check the right version to remove, this won't break anymore
unless the build does actually need to change
1/5 failed, 1/5 timeout, 3/5 success
expand
collapse
expand 0 comments
pull request successfully merged
a.starrysky.fyi
submitted
#0
1 commit
expand
collapse
fix(pm/bluesky): genericize build
Bluesky PDS was trying to remove a specific version of atproto. This
meant that as the version was bumped, the build would break. If we use
find to check the right version to remove, this won't break anymore
unless the build does actually need to change