diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-25T01·03-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-25T02·29+0000 |
commit | 4dca023385034839873b330cb6fcaf46807e0a59 (patch) | |
tree | 49ef9c33c4d4eb43be912bba855611a87232b9f7 /third_party | |
parent | 6936ee40afa5b333c3396e1be48f3a4aab72cf07 (diff) |
feat(3p/nix): Add build for VM for testing tvix r/1465
Add an expression, based on the nixos qemu virtualisation framework, for a basic system whose nix is tvix, to be used for testing tvix Change-Id: I3c7422bb10d3ce05a3094671cb770f1f745d814c Reviewed-on: https://cl.tvl.fyi/c/depot/+/1423 Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: Alyssa Ross <hi@alyssa.is> Tested-by: BuildkiteCI
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/nix/default.nix | 6 | ||||
-rw-r--r-- | third_party/nix/test-vm.nix | 17 |
2 files changed, 22 insertions, 1 deletions
diff --git a/third_party/nix/default.nix b/third_party/nix/default.nix index bc25689461d6..c8ed5adc8720 100644 --- a/third_party/nix/default.nix +++ b/third_party/nix/default.nix @@ -1,4 +1,6 @@ -{ pkgs ? (import ../.. {}).third_party +args@{ + pkgs ? (import ../.. {}).third_party +, lib , buildType ? "release" , depotPath ? ../.. , ... @@ -138,4 +140,6 @@ in pkgs.llvmPackages.libcxxStdenv.mkDerivation { # TODO(tazjin): integration test setup? # TODO(tazjin): docs generation? + + passthru = { test-vm = import ./test-vm.nix args; }; } diff --git a/third_party/nix/test-vm.nix b/third_party/nix/test-vm.nix new file mode 100644 index 000000000000..534a3fc9304c --- /dev/null +++ b/third_party/nix/test-vm.nix @@ -0,0 +1,17 @@ +{ depot, pkgs, ... }: + +let + + configuration = { ... }: { + imports = [ + "${pkgs.nixpkgsSrc}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix" + ]; + + nix.package = depot.third_party.nix; + + virtualisation.qemu.options = [ "-nographic" ]; + }; + + system = pkgs.nixos { inherit configuration; }; + +in system.vm |