about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/netbsd/pkgs/lorder.nix
blob: b10b8caee2ff20bfb88cda761f0eaa9cf80ff1c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  mkDerivation,
  bsdSetupHook,
  netbsdSetupHook,
  makeMinimal,
  install,
  mandoc,
  groff,
}:

mkDerivation {
  path = "usr.bin/lorder";
  nativeBuildInputs = [
    bsdSetupHook
    netbsdSetupHook
    makeMinimal
    install
    mandoc
    groff
  ];
}