dejavu-fonts: simplify build process
Unicode data and fc-lang are only necessary to generate the status files and coverage information, which are not used, or indeed even generated with full-ttf.
This commit is contained in:
parent
b4c8ea9536
commit
41b8c6d5a9
@ -1,21 +1,11 @@
|
|||||||
{fetchurl, fetchFromGitHub, stdenv, fontforge, perl, fontconfig, FontTTF}:
|
{fetchFromGitHub, stdenv, fontforge, perl, FontTTF}:
|
||||||
|
|
||||||
let version = "2.37" ; in
|
let version = "2.37" ; in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "dejavu-fonts-${version}";
|
name = "dejavu-fonts-${version}";
|
||||||
#fontconfig is needed only for fc-lang (?)
|
|
||||||
buildInputs = [fontforge perl FontTTF];
|
buildInputs = [fontforge perl FontTTF];
|
||||||
|
|
||||||
unicodeData = fetchurl {
|
|
||||||
url = http://www.unicode.org/Public/9.0.0/ucd/UnicodeData.txt ;
|
|
||||||
sha256 = "13zfannnr6sa6s27ggvcvzmh133ndi38pfyxsssvjmw2s8ac9pv8";
|
|
||||||
};
|
|
||||||
blocks = fetchurl {
|
|
||||||
url = http://www.unicode.org/Public/9.0.0/ucd/Blocks.txt;
|
|
||||||
sha256 = "04xyws1prlcnqsryq56sm25dlfvr3464lbjjh9fyaclhi3a2f8b1";
|
|
||||||
};
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dejavu-fonts";
|
owner = "dejavu-fonts";
|
||||||
repo = "dejavu-fonts";
|
repo = "dejavu-fonts";
|
||||||
@ -25,15 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildFlags = "full-ttf";
|
buildFlags = "full-ttf";
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = "patchShebangs scripts";
|
||||||
sed -e s@/usr/bin/env@$(type -tP env)@ -i scripts/*
|
|
||||||
sed -e s@/usr/bin/perl@$(type -tP perl)@ -i scripts/*
|
|
||||||
mkdir resources
|
|
||||||
tar xf ${fontconfig.src} --wildcards '*/fc-lang'
|
|
||||||
ln -s $PWD/fontconfig-*/fc-lang -t resources/
|
|
||||||
ln -s ${unicodeData} resources/UnicodeData.txt
|
|
||||||
ln -s ${blocks} resources/Blocks.txt
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/share/fonts/truetype
|
mkdir -p $out/share/fonts/truetype
|
||||||
|
Loading…
x
Reference in New Issue
Block a user