nixpkgs/pkgs/data/fonts/source-code-pro/default.nix

27 lines
782 B
Nix
Raw Normal View History

2015-04-30 00:44:48 +02:00
{ stdenv, fetchurl }:
2014-05-07 01:45:54 +02:00
2015-04-30 00:44:48 +02:00
stdenv.mkDerivation rec {
name = "source-code-pro-${version}";
version = "1.017";
2014-05-07 01:45:54 +02:00
2015-04-30 00:44:48 +02:00
src = fetchurl {
url="https://github.com/adobe-fonts/source-code-pro/archive/${version}R.tar.gz";
sha256="03q4a0f142c6zlngv6kjaik52y0yzwq5z5qj3j0fvvcbfy9sanjr";
};
2014-05-07 01:45:54 +02:00
2015-04-30 00:44:48 +02:00
phases = "unpackPhase installPhase";
2014-05-07 01:45:54 +02:00
2015-04-30 00:44:48 +02:00
installPhase = ''
mkdir -p $out/share/fonts/opentype
find . -name "*.otf" -exec cp {} $out/share/fonts/opentype \;
'';
2014-05-07 01:45:54 +02:00
meta = {
description = "A set of monospaced OpenType fonts designed for coding environments";
2015-04-30 00:44:48 +02:00
maintainers = with stdenv.lib.maintainers; [ relrod ];
platforms = with stdenv.lib.platforms; all;
2014-05-07 01:45:54 +02:00
homepage = "http://blog.typekit.com/2012/09/24/source-code-pro/";
2015-04-30 00:44:48 +02:00
license = stdenv.lib.licenses.ofl;
2014-05-07 01:45:54 +02:00
};
2015-04-30 00:44:48 +02:00
}