summary refs log tree commit diff
path: root/host/start-vm/shell.nix
blob: ed1a19083d5d02c6c18af01997c4c1be5de3cd85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2021 Alyssa Ross <hi@alyssa.is>

import ../../lib/call-package.nix ({ callSpectrumPackage, clippy, rustfmt }:

(callSpectrumPackage ./. {}).overrideAttrs (
{ nativeBuildInputs ? [], ... }:

{
  hardeningDisable = [ "fortify" ];

  nativeBuildInputs = nativeBuildInputs ++ [ clippy rustfmt ];
})) (_: {})