Merge pull request #55154 from AndersonTorres/package/office-code-pro

Office Code Pro: init at 1.004
This commit is contained in:
Will Dietz 2019-02-04 04:40:28 -06:00 committed by GitHub
commit 0955567a7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "office-code-pro";
version = "1.004";
src = fetchFromGitHub {
owner = "nathco";
repo = "Office-Code-Pro";
rev = version;
sha256 = "0znmjjyn5q83chiafy252bhsmw49r2nx2ls2cmhjp4ihidfr6cmb";
};
installPhase = ''
fontDir=$out/share/fonts/opentype
docDir=$out/share/doc/${pname}-${version}
mkdir -p $fontDir $docDir
install -Dm644 README.md $docDir
install -t $fontDir -m644 'Fonts/Office Code Pro/OTF/'*.otf
install -t $fontDir -m644 'Fonts/Office Code Pro D/OTF/'*.otf
'';
meta = with stdenv.lib; {
description = "A customized version of Source Code Pro";
longDescription = ''
Office Code Pro is a customized version of Source Code Pro, the monospaced
sans serif originally created by Paul D. Hunt for Adobe Systems
Incorporated. The customizations were made specifically for text editors
and coding environments, but are still very usable in other applications.
'';
homepage = https://github.com/nathco/Office-Code-Pro;
license = licenses.ofl;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.unix;
};
}

View File

@ -15716,6 +15716,8 @@ in
numix-cursor-theme = callPackage ../data/icons/numix-cursor-theme { };
office-code-pro = callPackage ../data/fonts/office-code-pro { };
oldstandard = callPackage ../data/fonts/oldstandard { };
oldsindhi = callPackage ../data/fonts/oldsindhi { };