about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/netbsd/pkgs/libpthread/package.nix
blob: c2a0d407718e904fdfa40b80933a9647e0de0e3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, mkDerivation
, headers
, common, libc, librt, sys
}:

mkDerivation (import ./base.nix // {
  pname = "libpthread";
  installPhase = null;
  noCC = false;
  dontBuild = false;
  buildInputs = [ headers ];
  SHLIBINSTALLDIR = "$(out)/lib";
  extraPaths = [ common libc.src librt.src sys.src ];
  meta.platforms = lib.platforms.netbsd;
})