2019-05-13 02:55:32 +01:00
|
|
|
{ lib, fetchzip }:
|
2016-06-30 08:44:22 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
let
|
2016-06-30 08:44:22 +01:00
|
|
|
version = "1.2";
|
2017-08-10 20:43:49 +01:00
|
|
|
pname = "norwester";
|
2019-08-13 22:52:01 +01:00
|
|
|
in fetchzip {
|
2016-06-30 08:44:22 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
url = "http://jamiewilson.io/norwester/assets/norwester.zip";
|
2016-06-30 08:44:22 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
postFetch = ''
|
2016-06-30 08:44:22 +01:00
|
|
|
mkdir -p $out/share/fonts/opentype
|
2017-08-10 20:43:49 +01:00
|
|
|
unzip -D -j $downloadedFile ${pname}-v${version}/${pname}.otf -d $out/share/fonts/opentype/
|
2016-06-30 08:44:22 +01:00
|
|
|
'';
|
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
sha256 = "1npsaiiz9g5z6315lnmynwcnrfl37fyxc7w1mhkw1xbzcnv74z4r";
|
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://jamiewilson.io/norwester";
|
2016-06-30 08:44:22 +01:00
|
|
|
description = "A condensed geometric sans serif by Jamie Wilson";
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
license = licenses.ofl;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|