Merge pull request #2551 from CodeBlock/source-code-pro

Add Source Code Pro font
This commit is contained in:
cillianderoiste 2014-05-07 09:48:49 +02:00
commit 366e220c25
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
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="1.017";
name="SourceCodePro";
url="mirror://sourceforge/sourcecodepro.adobe/${name}_FontsOnly-${version}.zip";
hash="07xjfxin883a3g3admdddxxqyzigihbsnmik0zpjii09cdlb8dl1";
};
in
rec {
src = a.fetchurl {
url = sourceInfo.url;
sha256 = sourceInfo.hash;
};
name = "${sourceInfo.name}-${sourceInfo.version}";
inherit buildInputs;
phaseNames = ["doUnpack" "installFonts"];
doUnpack = a.fullDepEntry (''
unzip ${src}
cd ${sourceInfo.name}*/OTF/
'') ["addInputs"];
meta = {
description = "A set of monospaced OpenType fonts designed for coding environments";
maintainers = with a.lib.maintainers; [ relrod ];
platforms = with a.lib.platforms; all;
homepage = "http://blog.typekit.com/2012/09/24/source-code-pro/";
license = "OFL";
};
}) x

View file

@ -7683,6 +7683,8 @@ let
r5rs = callPackage ../data/documentation/rnrs/r5rs.nix { };
sourceCodePro = callPackage ../data/fonts/source-code-pro {};
tango-icon-theme = callPackage ../data/icons/tango-icon-theme { };
themes = name: import (../data/misc/themes + ("/" + name + ".nix")) {