1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/data/fonts/libre-franklin/default.nix

24 lines
782 B
Nix
Raw Normal View History

2017-08-10 15:43:49 -04:00
{ stdenv, fetchzip }:
2016-09-10 21:36:43 -04:00
2017-08-10 15:43:49 -04:00
fetchzip rec {
2016-09-10 21:36:43 -04:00
name = "libre-franklin-1.014";
2017-08-10 15:43:49 -04:00
url = https://github.com/impallari/Libre-Franklin/archive/006293f34c47bd752fdcf91807510bc3f91a0bd3.zip;
2016-09-10 21:36:43 -04:00
2017-08-10 15:43:49 -04:00
postFetch = ''
mkdir -p $out/share/{doc,fonts}
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*README.md \*FONTLOG.txt -d "$out/share/doc/${name}"
2016-09-10 21:36:43 -04:00
'';
2017-08-10 15:43:49 -04:00
sha256 = "1rkjp8x62cn4alw3lp7m45q34bih81j2hg15kg5c1nciyqq1qz0z";
2016-09-10 21:36:43 -04:00
meta = with stdenv.lib; {
description = "A reinterpretation and expansion based on the 1912 Morris Fuller Bentons classic.";
homepage = https://github.com/impallari/Libre-Franklin;
license = licenses.ofl;
maintainers = with maintainers; [ cmfwyp ];
platforms = platforms.all;
};
}