1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00
nixpkgs/pkgs/data/fonts/cm-unicode/default.nix

26 lines
701 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2017-08-10 20:43:49 +01:00
let
version = "0.7.0";
2017-08-10 20:43:49 +01:00
in fetchzip rec {
name = "cm-unicode-${version}";
2017-08-10 20:43:49 +01:00
url = "mirror://sourceforge/cm-unicode/cm-unicode/${version}/${name}-otf.tar.xz";
2017-08-10 20:43:49 +01:00
postFetch = ''
tar -xJvf $downloadedFile --strip-components=1
install -m444 -Dt $out/share/fonts/opentype *.otf
install -m444 -Dt $out/share/doc/${name} README FontLog.txt
'';
2017-08-10 20:43:49 +01:00
sha256 = "1rzz7yhqq3lljyqxbg46jfzfd09qgpgx865lijr4sgc94riy1ypn";
meta = with lib; {
homepage = http://canopus.iacp.dvo.ru/~panov/cm-unicode/;
description = "Computer Modern Unicode fonts";
maintainers = with maintainers; [ raskin rycee ];
license = licenses.ofl;
platforms = platforms.all;
};
}