mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
Adding Theano font
svn path=/nixpkgs/trunk/; revision=27308
This commit is contained in:
parent
1e8b1fce5c
commit
a37fc29f81
50
pkgs/data/fonts/theano/default.nix
Normal file
50
pkgs/data/fonts/theano/default.nix
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
x@{builderDefsPackage
|
||||||
|
, unzip
|
||||||
|
, ...}:
|
||||||
|
builderDefsPackage
|
||||||
|
(a :
|
||||||
|
let
|
||||||
|
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||||
|
[];
|
||||||
|
|
||||||
|
buildInputs = map (n: builtins.getAttr n x)
|
||||||
|
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||||
|
sourceInfo = rec {
|
||||||
|
version="2.0";
|
||||||
|
baseName="theano";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
url="http://www.thessalonica.org.ru/downloads/${name}.otf.zip";
|
||||||
|
hash="1xiykqbbiawvfk33639awmgdn25b8s2k7vpwncl17bzlk887b4z6";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
rec {
|
||||||
|
src = a.fetchurl {
|
||||||
|
url = sourceInfo.url;
|
||||||
|
sha256 = sourceInfo.hash;
|
||||||
|
};
|
||||||
|
|
||||||
|
inherit (sourceInfo) name version;
|
||||||
|
inherit buildInputs;
|
||||||
|
|
||||||
|
phaseNames = ["doUnpack" "installFonts"];
|
||||||
|
|
||||||
|
doUnpack = a.fullDepEntry ''
|
||||||
|
unzip ${src}
|
||||||
|
'' ["addInputs"];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "An old-style font";
|
||||||
|
maintainers = with a.lib.maintainers;
|
||||||
|
[
|
||||||
|
raskin
|
||||||
|
];
|
||||||
|
platforms = with a.lib.platforms;
|
||||||
|
all;
|
||||||
|
};
|
||||||
|
passthru = {
|
||||||
|
updateInfo = {
|
||||||
|
downloadPage = "http://www.thessalonica.org.ru/ru/fonts-download.html";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}) x
|
||||||
|
|
@ -5782,6 +5782,8 @@ let
|
|||||||
|
|
||||||
terminus_font = callPackage ../data/fonts/terminus-font { };
|
terminus_font = callPackage ../data/fonts/terminus-font { };
|
||||||
|
|
||||||
|
theano = callPackage ../data/fonts/theano { };
|
||||||
|
|
||||||
ttf_bitstream_vera = callPackage ../data/fonts/ttf-bitstream-vera { };
|
ttf_bitstream_vera = callPackage ../data/fonts/ttf-bitstream-vera { };
|
||||||
|
|
||||||
ucsFonts = callPackage ../data/fonts/ucs-fonts { };
|
ucsFonts = callPackage ../data/fonts/ucs-fonts { };
|
||||||
|
Loading…
Reference in New Issue
Block a user