Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

78 lines
1.9 KiB
Nix

{
lib,
fetchgit,
formats,
}:
let
inherit (lib)
concatStrings
listToAttrs
makeOverridable
mapAttrsToList
nameValuePair
;
json = formats.json { };
in
rec {
# Derive a pin file from workspace state.
mkPinFile =
workspaceState:
assert workspaceState.version >= 5 && workspaceState.version <= 6;
json.generate "Package.resolved" {
version = 1;
object.pins = map (dep: {
package = dep.packageRef.name;
repositoryURL = dep.packageRef.location;
state = dep.state.checkoutState;
}) workspaceState.object.dependencies;
};
# Make packaging helpers from swiftpm2nix generated output.
helpers =
generated:
let
inherit (import generated) workspaceStateFile hashes;
workspaceState = lib.importJSON workspaceStateFile;
pinFile = mkPinFile workspaceState;
in
rec {
# Create fetch expressions for dependencies.
sources = listToAttrs (
map (
dep:
nameValuePair dep.subpath (fetchgit {
url = dep.packageRef.location;
rev = dep.state.checkoutState.revision;
sha256 = hashes.${dep.subpath};
fetchSubmodules = true;
})
) workspaceState.object.dependencies
);
# Configure phase snippet for use in packaging.
configure = ''
mkdir -p .build/checkouts
ln -sf ${pinFile} ./Package.resolved
install -m 0600 ${workspaceStateFile} ./.build/workspace-state.json
''
+ concatStrings (
mapAttrsToList (name: src: ''
ln -s '${src}' '.build/checkouts/${name}'
'') sources
)
+ ''
# Helper that makes a swiftpm dependency mutable by copying the source.
swiftpmMakeMutable() {
local orig="$(readlink .build/checkouts/$1)"
rm .build/checkouts/$1
cp -r "$orig" .build/checkouts/$1
chmod -R u+w .build/checkouts/$1
}
'';
};
}