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

39 lines
894 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, premake5 }:
2017-07-22 21:33:37 +00:00
stdenv.mkDerivation rec {
pname = "otfcc";
2020-04-15 06:02:11 +00:00
version = "0.10.4";
2017-07-22 21:33:37 +00:00
src = fetchFromGitHub {
owner = "caryll";
repo = "otfcc";
rev = "v${version}";
2020-04-15 06:02:11 +00:00
sha256 = "1nrkzpqklfpqsccji4ans40rj88l80cv7dpxwx4g577xrvk13a0f";
2017-07-22 21:33:37 +00:00
};
2018-11-27 07:42:54 +00:00
nativeBuildInputs = [ premake5 ];
2017-07-22 21:33:37 +00:00
2020-08-07 16:25:26 +00:00
patches = [
./fix-aarch64.patch
./move-makefiles.patch
];
2021-01-15 09:19:50 +00:00
buildFlags = lib.optional stdenv.isAarch64 [ "config=release_arm" ];
2017-07-22 21:33:37 +00:00
installPhase = ''
mkdir -p $out/bin
2020-08-07 16:25:26 +00:00
cp bin/release-*/otfcc* $out/bin/
2017-07-22 21:33:37 +00:00
'';
2017-11-27 00:07:53 +00:00
enableParallelBuilding = true;
meta = with lib; {
2017-07-22 21:33:37 +00:00
description = "Optimized OpenType builder and inspector";
homepage = "https://github.com/caryll/otfcc";
2017-07-22 21:33:37 +00:00
license = licenses.asl20;
2020-08-07 16:25:26 +00:00
platforms = [ "aarch64-linux" "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
};
}