2017-08-10 12:43:49 -07:00
|
|
|
{stdenv, fetchzip}:
|
2007-01-22 09:11:08 -08:00
|
|
|
|
2017-08-10 12:43:49 -07:00
|
|
|
fetchzip {
|
2007-01-22 09:11:08 -08:00
|
|
|
name = "ttf-bitstream-vera-1.10";
|
2015-09-23 13:44:28 -07:00
|
|
|
|
2017-08-10 12:43:49 -07:00
|
|
|
url = mirror://gnome/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-1.10.tar.bz2;
|
2015-09-23 13:44:28 -07:00
|
|
|
|
2017-08-10 12:43:49 -07:00
|
|
|
postFetch = ''
|
|
|
|
tar -xjf $downloadedFile --strip-components=1
|
2007-01-22 09:11:08 -08:00
|
|
|
fontDir=$out/share/fonts/truetype
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $fontDir
|
2007-01-22 09:11:08 -08:00
|
|
|
cp *.ttf $fontDir
|
2016-05-04 03:08:35 -07:00
|
|
|
'';
|
2016-08-02 09:06:29 -07:00
|
|
|
|
2017-08-10 12:43:49 -07:00
|
|
|
sha256 = "179hal4yi3367jg8rsvqx6h2w4s0kn9zzrv8c47sslyg28g39s4m";
|
|
|
|
|
2016-08-02 09:06:29 -07:00
|
|
|
meta = {
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
2007-01-22 09:11:08 -08:00
|
|
|
}
|