2019-05-13 03:55:32 +02:00
|
|
|
{ lib, fetchzip }:
|
2011-05-28 21:51:08 +02:00
|
|
|
|
2017-08-10 21:43:49 +02:00
|
|
|
let
|
2015-06-12 00:17:53 +02:00
|
|
|
version = "0.7.0";
|
2017-08-10 21:43:49 +02:00
|
|
|
in fetchzip rec {
|
|
|
|
name = "cm-unicode-${version}";
|
2015-06-12 00:17:53 +02:00
|
|
|
|
2017-08-10 21:43:49 +02:00
|
|
|
url = "mirror://sourceforge/cm-unicode/cm-unicode/${version}/${name}-otf.tar.xz";
|
2011-05-28 21:51:08 +02:00
|
|
|
|
2017-08-10 21:43:49 +02:00
|
|
|
postFetch = ''
|
|
|
|
tar -xJvf $downloadedFile --strip-components=1
|
2019-05-13 03:55:32 +02:00
|
|
|
install -m444 -Dt $out/share/fonts/opentype *.otf
|
|
|
|
install -m444 -Dt $out/share/doc/${name} README FontLog.txt
|
2015-06-12 00:17:53 +02:00
|
|
|
'';
|
2011-05-28 21:51:08 +02:00
|
|
|
|
2017-08-10 21:43:49 +02:00
|
|
|
sha256 = "1rzz7yhqq3lljyqxbg46jfzfd09qgpgx865lijr4sgc94riy1ypn";
|
|
|
|
|
2019-05-13 03:55:32 +02:00
|
|
|
meta = with lib; {
|
2022-02-06 11:47:09 +01:00
|
|
|
homepage = "https://cm-unicode.sourceforge.io/";
|
2015-06-12 00:17:53 +02:00
|
|
|
description = "Computer Modern Unicode fonts";
|
|
|
|
maintainers = with maintainers; [ raskin rycee ];
|
|
|
|
license = licenses.ofl;
|
|
|
|
platforms = platforms.all;
|
2011-05-28 21:51:08 +02:00
|
|
|
};
|
2015-06-12 00:17:53 +02:00
|
|
|
}
|