mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
Merge #27165: ttf-envy-code-r: init at 0.PR7
This commit is contained in:
commit
c057098b7d
@ -316,6 +316,7 @@
|
||||
luispedro = "Luis Pedro Coelho <luis@luispedro.org>";
|
||||
lukego = "Luke Gorrie <luke@snabb.co>";
|
||||
lw = "Sergey Sofeychuk <lw@fmap.me>";
|
||||
lyt = "Tim Liou <wheatdoge@gmail.com>";
|
||||
m3tti = "Mathaeus Sander <mathaeus.peter.sander@gmail.com>";
|
||||
ma27 = "Maximilian Bosch <maximilian@mbosch.me>";
|
||||
madjar = "Georges Dubus <georges.dubus@compiletoi.net>";
|
||||
|
30
pkgs/data/fonts/ttf-envy-code-r/default.nix
Normal file
30
pkgs/data/fonts/ttf-envy-code-r/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
let
|
||||
pname = "ttf-envy-code-r";
|
||||
version = "PR7";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-0.${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.damieng.com/fonts/original/EnvyCodeR-${version}.zip";
|
||||
sha256 = "9f7e9703aaf21110b4e1a54d954d57d4092727546348598a5a8e8101e4597aff";
|
||||
};
|
||||
|
||||
buildInputs = [unzip];
|
||||
|
||||
installPhase = ''
|
||||
for f in *.ttf; do
|
||||
install -Dm 644 "$f" "$out/share/fonts/truetype/$f"
|
||||
done
|
||||
install -Dm 644 Read\ Me.txt "$out/share/doc/${pname}/readme.txt"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://damieng.com/blog/tag/envy-code-r;
|
||||
description = "Free scalable coding font by DamienG";
|
||||
license = licenses.unfree;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.lyt ];
|
||||
};
|
||||
}
|
@ -13102,6 +13102,8 @@ with pkgs;
|
||||
|
||||
ttf_bitstream_vera = callPackage ../data/fonts/ttf-bitstream-vera { };
|
||||
|
||||
ttf-envy-code-r = callPackage ../data/fonts/ttf-envy-code-r {};
|
||||
|
||||
tzdata = callPackage ../data/misc/tzdata { };
|
||||
|
||||
ubuntu_font_family = callPackage ../data/fonts/ubuntu-font-family { };
|
||||
|
Loading…
Reference in New Issue
Block a user