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

mkDerivation (
  import ./base.nix
  // {
    pname = "libpthread-headers";
    installPhase = "includesPhase";
    dontBuild = true;
    noCC = true;
    meta.platforms = lib.platforms.netbsd;
  }
)