about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/freebsd/pkgs/libutil.nix
blob: 6df6fa740f45e320c7c595d66c4a5399a7e3a0ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
  mkDerivation,
  lib,
  stdenv,
}:
mkDerivation {
  path = "lib/libutil";
  extraPaths = [ "lib/libc/gen" ];
  MK_TESTS = "no";
}