Also add --all, which shows the value of all options. Diffing the --all output on either side of contemplated changes is a lovely way to better understand what's going on inside nixos.
9 lines
219 B
Nix
9 lines
219 B
Nix
{stdenv, boost, cmake, pkgconfig, nix, ... }:
|
|
stdenv.mkDerivation rec {
|
|
name = "nixos-option";
|
|
src = ./.;
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
buildInputs = [ boost nix ];
|
|
enableParallelBuilding = true;
|
|
}
|