about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/build-managers/jam/ftjam.nix
blob: 1f106401c0d12818604739790c6c4ed75889167b (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
49
50
51
52
53
{ lib
, stdenv
, fetchurl
, bison
}:

stdenv.mkDerivation rec {
  pname = "ftjam";
  version = "2.5.2";

  src = fetchurl {
    url = "https://downloads.sourceforge.net/project/freetype/${pname}/${version}/${pname}-${version}.tar.bz2";
    hash = "sha256-6JdzUAqSkS3pGOn+v/q+S2vOedaa8ZRDX04DK4ptZqM=";
  };

  nativeBuildInputs = [
    bison
  ];

  preConfigure = ''
    unset AR
  '';

  buildPhase = ''
    runHook preBuild

    make jam0

    runHook postBuild
  '';

  installPhase = ''
    runHook preInstall

    ./jam0 -j$NIX_BUILD_CORES -sBINDIR=$out/bin install
    mkdir -p $out/doc/jam
    cp *.html $out/doc/jam

    runHook postInstall
  '';

  enableParallelBuilding = true;

  meta = with lib; {
    description = "Freetype's enhanced, backwards-compatible Jam clone";
    homepage = "https://freetype.org/jam/";
    license = licenses.free;
    maintainers = with maintainers; [ AndersonTorres ];
    mainProgram = "jam";
    platforms = platforms.unix;
  };
}
# TODO: setup hook for Jam