about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/freebsd/pkgs/config.nix
blob: f7ba273ed5583bc7c3cf1020910b39982e2e7abe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  mkDerivation,
  bsdSetupHook,
  freebsdSetupHook,
  makeMinimal,
  install,
  mandoc,
  groff,
  flex,
  byacc,
  file2c,
  compatIfNeeded,
  libnv,
  libsbuf,
}:

mkDerivation {
  path = "usr.sbin/config";
  nativeBuildInputs = [
    bsdSetupHook
    freebsdSetupHook
    makeMinimal
    install
    mandoc
    groff

    flex
    byacc
    file2c
  ];
  buildInputs = compatIfNeeded ++ [
    libnv
    libsbuf
  ];
}