2017-08-11 13:38:52 +00:00
|
|
|
{stdenv, fetchzip}:
|
2014-07-15 17:35:22 +00:00
|
|
|
|
2017-08-11 13:38:52 +00:00
|
|
|
fetchzip {
|
2014-07-15 17:35:22 +00:00
|
|
|
name = "opensans-ttf-20140617";
|
|
|
|
|
2017-08-11 13:38:52 +00:00
|
|
|
url = "http://web.archive.org/web/20150801161609/https://hexchain.org/pub/archlinux/ttf-opensans/opensans.tar.gz";
|
2014-07-15 17:35:22 +00:00
|
|
|
|
2017-08-11 13:38:52 +00:00
|
|
|
postFetch = ''
|
|
|
|
tar -xzf $downloadedFile
|
2014-07-15 17:35:22 +00:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
|
|
|
cp *.ttf $out/share/fonts/truetype
|
|
|
|
'';
|
|
|
|
|
2017-08-11 13:38:52 +00:00
|
|
|
sha256 = "0zpzqw5y9g5jk7xjcxa12ds60ckvxmpw8p7bnkkmad53s94yr5wf";
|
|
|
|
|
2014-07-15 17:35:22 +00:00
|
|
|
meta = {
|
|
|
|
description = "Open Sans fonts";
|
|
|
|
longDescription = ''
|
|
|
|
Open Sans is a humanist sans serif typeface designed by Steve Matteson,
|
|
|
|
Type Director of Ascender Corp.
|
|
|
|
'';
|
2017-08-02 21:50:51 +00:00
|
|
|
homepage = https://en.wikipedia.org/wiki/Open_Sans;
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2014-07-15 17:35:22 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ ];
|
|
|
|
};
|
|
|
|
}
|