Merge remote-tracking branch 'origin/master' into staging
Conflicts: pkgs/applications/audio/espeak/edit.nix pkgs/applications/audio/lmms/default.nix pkgs/desktops/e18/enlightenment.nix pkgs/games/exult/default.nix pkgs/os-specific/linux/alsa-plugins/default.nix
This commit is contained in:
34
pkgs/data/fonts/opensans-ttf/default.nix
Normal file
34
pkgs/data/fonts/opensans-ttf/default.nix
Normal file
@@ -0,0 +1,34 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
# adapted from https://aur.archlinux.org/packages/tt/ttf-opensans/PKGBUILD
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "opensans-ttf-20140617";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://hexchain.org/pub/archlinux/ttf-opensans/opensans.tar.gz";
|
||||
sha256 = "1ycn39dijhd3lffmafminrnfmymdig2jvc6i47bb42fx777q97q4";
|
||||
};
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
cp *.ttf $out/share/fonts/truetype
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Open Sans fonts";
|
||||
|
||||
longDescription = ''
|
||||
Open Sans is a humanist sans serif typeface designed by Steve Matteson,
|
||||
Type Director of Ascender Corp.
|
||||
'';
|
||||
|
||||
homepage = "http://en.wikipedia.org/wiki/Open_Sans";
|
||||
license = "Apache";
|
||||
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user