nixpkgs/pkgs/data/fonts/theano/default.nix
volth c9eb44eab3 data/fonts: cleanup
* make font derivations fixed-output where applicable
 * fix dead links
 * `stdenv.lib` -> `lib` where `stdenv` is not involved
 * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
2019-05-13 06:03:31 +00:00

27 lines
753 B
Nix

{ lib, fetchzip }:
let
version = "2.0";
in fetchzip rec {
name = "theano-${version}";
url = "https://github.com/akryukov/theano/releases/download/v${version}/theano-${version}.otf.zip";
postFetch = ''
mkdir -p $out/share/fonts/opentype
mkdir -p $out/share/doc/${name}
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*.txt -d "$out/share/doc/${name}"
'';
sha256 = "1my1symb7k80ys33iphsxvmf6432wx6vjdnxhzhkgrang1rhx1h8";
meta = with lib; {
homepage = https://github.com/akryukov/theano;
description = "An old-style font designed from historic samples";
maintainers = with maintainers; [ raskin rycee ];
license = licenses.ofl;
platforms = platforms.all;
};
}