summaryrefslogtreecommitdiffstats
path: root/pkgs/data/fonts/corefonts
AgeCommit message (Collapse)Author
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-09-16corefonts: fix hash mismatch updateMarek Fajkus
2020-09-03treewide: use URN for fontconfig DTDJan Tojnar
To match upstream change: https://gitlab.freedesktop.org/fontconfig/fontconfig/commit/9c46ef4aac87c42d013d0e7380b6aeb03e1a9949
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2019-05-13data/fonts: cleanupvolth
* make font derivations fixed-output where applicable * fix dead links * `stdenv.lib` -> `lib` where `stdenv` is not involved * remove `meta.platforms = [ unix ]` and `meta.platforms = [ linux ]` because the restriction has no sense for data packages
2018-01-10treewide: Fix deps in a few other fixed output derivationsJohn Ericson
2017-08-11data/fonts: simpler cleanupsVolth
2017-08-01pkgs: refactor needless quoting of homepage meta attribute (#27809)Silvan Mosberger
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
2016-06-07fix 'licenses' -> 'license' in several placesNikolay Amiantov
2016-06-07corefonts: add meta and mark as unfreeNikolay Amiantov
See e.g. https://sourceforge.net/p/corefonts/bugs/6/
2015-03-21Add no-op fontconfig files for Microsoft fonts.Robert Helgesson
With these fontconfig files it becomes possible for other packages to configure font aliases for the Microsoft fonts. If both, for example, vista-fonts and some package providing an alias for Cambria are installed then the user may control whether or not the alias is active by manipulating the package priorities.
2012-01-18* "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2007-08-27* Rewrite all the SourceForge URLs to mirror://sourceforge/.Eelco Dolstra
find . -name "*.nix" | while read fn; do sed 's^http://[a-z]*.dl.sourceforge.net/sourceforge/^mirror://sourceforge/^g' < $fn > $fn.new; mv $fn.new $fn; done svn path=/nixpkgs/trunk/; revision=9198
2007-01-22* Add the Microsoft Core Fonts.Eelco Dolstra
svn path=/nixpkgs/trunk/; revision=7754