summary refs log tree commit diff
path: root/pkgs/tools/misc/otfcc/default.nix
blob: acf46a58a6bf4a647ecd44278731d85b5349ce46 (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
{ stdenv, fetchFromGitHub, premake5, ninja }:

stdenv.mkDerivation rec {
  name = "otfcc-${version}";
  version = "0.9.6";

  src = fetchFromGitHub {
    owner = "caryll";
    repo = "otfcc";
    rev = "v${version}";
    sha256 = "1rnjfqqyc6d9nhlh8if9k37wk94mcwz4wf3k239v6idg48nrk10b";
  };

  nativeBuildInputs = [ premake5 ninja ];

  configurePhase = ''
    premake5 ninja
  '';

  ninjaFlags = let x = if stdenv.hostPlatform.isi686 then "x86" else "x64"; in
    [ "-C" "build/ninja" "otfccdump_release_${x}" "otfccbuild_release_${x}" ];

  installPhase = ''
    mkdir -p $out/bin
    cp bin/release-x*/otfcc* $out/bin/
  '';

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "Optimized OpenType builder and inspector";
    homepage = https://github.com/caryll/otfcc;
    license = licenses.asl20;
    platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
    maintainers = with maintainers; [ jfrankenau ttuegel ];
  };

}