summary refs log tree commit diff
path: root/nixos/modules/installer/tools/nixos-option/default.nix
blob: 753fd92c7bbf66ba92f0cb78fd880463d28961d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{lib, stdenv, boost, cmake, pkgconfig, nix, ... }:
stdenv.mkDerivation rec {
  name = "nixos-option";
  src = ./.;
  nativeBuildInputs = [ cmake pkgconfig ];
  buildInputs = [ boost nix ];
  meta = {
    license = stdenv.lib.licenses.lgpl2Plus;
    maintainers = with lib.maintainers; [ chkno ];
  };
}