mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
29 lines
779 B
Nix
29 lines
779 B
Nix
{ lib, stdenv, fetchgit }:
|
|
|
|
let
|
|
version = "2017-03-30";
|
|
in (fetchgit {
|
|
name = "go-font-${version}";
|
|
url = "https://go.googlesource.com/image";
|
|
rev = "f03a046406d4d7fbfd4ed29f554da8f6114049fc";
|
|
|
|
postFetch = ''
|
|
mv $out/* .
|
|
mkdir -p $out/share/fonts/truetype
|
|
mkdir -p $out/share/doc/go-font
|
|
cp font/gofont/ttfs/* $out/share/fonts/truetype
|
|
mv $out/share/fonts/truetype/README $out/share/doc/go-font/LICENSE
|
|
'';
|
|
|
|
sha256 = "1488426ya2nzmwjas947fx9h5wzxrp9wasn8nkjqf0y0mpd4f1xz";
|
|
}) // {
|
|
meta = with lib; {
|
|
homepage = "https://blog.golang.org/go-fonts";
|
|
description = "The Go font family";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ sternenseemann ];
|
|
platforms = lib.platforms.all;
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|