about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/freebsd/pkgs/libdwarf.nix
blob: 84115b626a7afaeb41191260b12c43552738acbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  lib,
  stdenv,
  mkDerivation,
  bsdSetupHook,
  freebsdSetupHook,
  makeMinimal,
  install,
  mandoc,
  groff,
  m4,
  compatIfNeeded,
  libelf,
}:

mkDerivation {
  path = "lib/libdwarf";
  extraPaths = [
    "contrib/elftoolchain/libdwarf"
    "contrib/elftoolchain/common"
    "sys/sys/elf32.h"
    "sys/sys/elf64.h"
    "sys/sys/elf_common.h"
  ];
  nativeBuildInputs = [
    bsdSetupHook
    freebsdSetupHook
    makeMinimal
    install
    mandoc
    groff

    m4
  ];
  buildInputs = compatIfNeeded ++ [ libelf ];
  MK_TESTS = "no";
}