about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/netbsd/pkgs/makeMinimal.nix
blob: 585c72bd1798714e4ccd34cccf31c1df19da8393 (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
38
39
40
41
42
43
44
45
46
47
48
{
  mkDerivation,
  bsdSetupHook,
  netbsdSetupHook,
  rsync,
  make,
}:

mkDerivation {
  path = "tools/make";
  sha256 = "0fh0nrnk18m613m5blrliq2aydciv51qhc0ihsj4k63incwbk90n";
  version = "9.2";

  buildInputs = [ ];
  nativeBuildInputs = [
    bsdSetupHook
    netbsdSetupHook
    rsync
  ];

  skipIncludesPhase = true;

  postPatch = ''
    patchShebangs $COMPONENT_PATH/configure
    ${make.postPatch}
  '';

  buildPhase = ''
    runHook preBuild

    sh ./buildmake.sh

    runHook postBuild
  '';

  installPhase = ''
    runHook preInstall

    install -D nbmake $out/bin/nbmake
    ln -s $out/bin/nbmake $out/bin/make
    mkdir -p $out/share
    cp -r $BSDSRCDIR/share/mk $out/share/mk

    runHook postInstall
  '';

  extraPaths = [ make.src ] ++ make.extraPaths;
}