forked from mirrors/nixpkgs
Merge pull request #32048 from ck3d/vdrsymbols
vdrsymbols: init at 20100612
This commit is contained in:
commit
898aedcc04
27
pkgs/data/fonts/vdrsymbols/default.nix
Normal file
27
pkgs/data/fonts/vdrsymbols/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchzip }:
|
||||
|
||||
fetchzip rec {
|
||||
name = "vdrsymbols-20100612";
|
||||
|
||||
url = http://andreas.vdr-developer.org/fonts/download/vdrsymbols-ttf-20100612.tgz;
|
||||
|
||||
sha256 = "0wpxns8zqic98c84j18dr4zmj092v07yq07vwwgzblr0rw9n6gzr";
|
||||
|
||||
postFetch = ''
|
||||
tar xvzf "$downloadedFile"
|
||||
install -Dm444 -t "$out/share/fonts/truetype" */*.ttf
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "DejaVu fonts with additional symbols used by VDR";
|
||||
homepage = http://andreas.vdr-developer.org/fonts/;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ ck3d ];
|
||||
|
||||
# Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
|
||||
# Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
|
||||
# DejaVu changes are in public domain
|
||||
# See https://dejavu-fonts.github.io/License.html for details
|
||||
license = licenses.free;
|
||||
};
|
||||
}
|
|
@ -13715,6 +13715,8 @@ with pkgs;
|
|||
|
||||
vanilla-dmz = callPackage ../data/icons/vanilla-dmz { };
|
||||
|
||||
vdrsymbols = callPackage ../data/fonts/vdrsymbols { };
|
||||
|
||||
vistafonts = callPackage ../data/fonts/vista-fonts { };
|
||||
|
||||
vistafonts-chs = callPackage ../data/fonts/vista-fonts-chs { };
|
||||
|
|
Loading…
Reference in a new issue