nixpkgs/pkgs/tools/misc/otfcc/default.nix

40 lines
940 B
Nix
Raw Normal View History

2017-07-22 21:33:37 +00:00
{ stdenv, fetchurl, premake5, hostPlatform }:
stdenv.mkDerivation rec {
name = "otfcc-${version}";
version = "0.8.6";
src = fetchurl {
url = "https://github.com/caryll/otfcc/archive/v${version}.tar.gz";
sha256 = "0kap52bzrn21fmph8j2pc71f80f38ak1p2fcczzmrh0hb1r9c8dd";
};
nativeBuildInputs = [ premake5 ];
configurePhase = ''
premake5 gmake
'';
preBuild = "cd build/gmake";
makeFlags = ''config=release_${if hostPlatform.isi686 then "x86" else "x64"}'';
postBuild = "cd ../..";
installPhase = ''
mkdir -p $out/bin
cp bin/release-x*/otfcc* $out/bin/
'';
2017-11-27 00:07:53 +00:00
enableParallelBuilding = true;
2017-07-22 21:33:37 +00:00
meta = with stdenv.lib; {
description = "Optimized OpenType builder and inspector";
homepage = https://github.com/caryll/otfcc;
license = licenses.asl20;
2017-11-27 00:07:53 +00:00
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
2017-11-20 17:06:51 +00:00
maintainers = with maintainers; [ jfrankenau ttuegel ];
2017-07-22 21:33:37 +00:00
};
}