nix: VM tests; demo VM; cleanup
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: If0fe78ab43436c7e85fa357483bb4c8c6a6a6964
This commit is contained in:
parent
0782d891f1
commit
389bf71d82
10 changed files with 2882 additions and 63 deletions
11
nix/packages/fc-common.nix
Normal file
11
nix/packages/fc-common.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
craneLib,
|
||||
commonArgs,
|
||||
cargoArtifacts,
|
||||
}:
|
||||
craneLib.buildPackage (commonArgs
|
||||
// {
|
||||
inherit cargoArtifacts;
|
||||
pname = "fc-common";
|
||||
cargoExtraArgs = "--package fc-common";
|
||||
})
|
||||
11
nix/packages/fc-evaluator.nix
Normal file
11
nix/packages/fc-evaluator.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
craneLib,
|
||||
commonArgs,
|
||||
cargoArtifacts,
|
||||
}:
|
||||
craneLib.buildPackage (commonArgs
|
||||
// {
|
||||
inherit cargoArtifacts;
|
||||
pname = "fc-evaluator";
|
||||
cargoExtraArgs = "--package fc-evaluator";
|
||||
})
|
||||
11
nix/packages/fc-migrate-cli.nix
Normal file
11
nix/packages/fc-migrate-cli.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
craneLib,
|
||||
commonArgs,
|
||||
cargoArtifacts,
|
||||
}:
|
||||
craneLib.buildPackage (commonArgs
|
||||
// {
|
||||
inherit cargoArtifacts;
|
||||
pname = "fc-migrate-cli";
|
||||
cargoExtraArgs = "--package fc-migrate-cli";
|
||||
})
|
||||
11
nix/packages/fc-queue-runner.nix
Normal file
11
nix/packages/fc-queue-runner.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
craneLib,
|
||||
commonArgs,
|
||||
cargoArtifacts,
|
||||
}:
|
||||
craneLib.buildPackage (commonArgs
|
||||
// {
|
||||
inherit cargoArtifacts;
|
||||
pname = "fc-queue-runner";
|
||||
cargoExtraArgs = "--package fc-queue-runner";
|
||||
})
|
||||
11
nix/packages/fc-server.nix
Normal file
11
nix/packages/fc-server.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
craneLib,
|
||||
commonArgs,
|
||||
cargoArtifacts,
|
||||
}:
|
||||
craneLib.buildPackage (commonArgs
|
||||
// {
|
||||
inherit cargoArtifacts;
|
||||
pname = "fc-server";
|
||||
cargoExtraArgs = "--package fc-server";
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue