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

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