2018-11-27 07:42:54 +00:00
|
|
|
|
{ stdenv, fetchFromGitHub, premake5 }:
|
2017-07-22 21:33:37 +00:00
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "otfcc-${version}";
|
2018-02-20 19:02:32 +00:00
|
|
|
|
version = "0.9.6";
|
2017-07-22 21:33:37 +00:00
|
|
|
|
|
2017-12-04 05:42:17 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "caryll";
|
|
|
|
|
repo = "otfcc";
|
|
|
|
|
rev = "v${version}";
|
2018-02-20 19:02:32 +00:00
|
|
|
|
sha256 = "1rnjfqqyc6d9nhlh8if9k37wk94mcwz4wf3k239v6idg48nrk10b";
|
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
|
|
|
|
|
2018-11-27 07:42:54 +00:00
|
|
|
|
# Don’t guess where our makefiles will end up. Just use current
|
|
|
|
|
# directory.
|
|
|
|
|
patchPhase = ''
|
|
|
|
|
substituteInPlace premake5.lua \
|
|
|
|
|
--replace 'location "build/gmake"' 'location "."'
|
2017-07-22 21:33:37 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|