2020-11-06 11:47:11 +03:00
|
|
|
# Functions that are expected run on the native (non-cross) system.
|
|
|
|
|
2021-12-08 11:53:31 +03:00
|
|
|
{ callPackage }:
|
2020-10-27 15:55:49 +03:00
|
|
|
|
2020-11-11 10:48:53 +03:00
|
|
|
rec {
|
|
|
|
bootFakeShip = callPackage ./boot-fake-ship.nix { };
|
2020-10-27 15:55:49 +03:00
|
|
|
|
2020-11-11 10:48:53 +03:00
|
|
|
testFakeShip = callPackage ./test-fake-ship.nix { inherit bootFakeShip; };
|
2020-10-27 15:55:49 +03:00
|
|
|
|
2020-11-11 10:48:53 +03:00
|
|
|
fetchGitHubLFS = callPackage ./fetch-github-lfs.nix { };
|
2020-10-27 15:55:49 +03:00
|
|
|
|
2020-11-11 10:48:53 +03:00
|
|
|
makeReleaseTarball = callPackage ./make-release-tarball.nix { };
|
2020-10-27 15:55:49 +03:00
|
|
|
}
|