about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/freebsd/pkgs/libnv.nix
blob: 6ce61e5a68c7b2b902850605fef6080e6f563a24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ mkDerivation }:

mkDerivation {
  path = "lib/libnv";
  extraPaths = [
    "sys/contrib/libnv"
    "sys/sys"
  ];
  MK_TESTS = "no";
}