nixpkgs/pkgs/data/fonts/go-font/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
872 B
Nix
Raw Normal View History

{ lib, fetchgit }:
2016-11-20 21:11:52 +03:00
let
2022-10-19 08:43:26 +03:00
version = "2.010";
in (fetchgit {
name = "go-font-${version}";
url = "https://go.googlesource.com/image";
2022-10-19 08:43:26 +03:00
rev = "41969df76e82aeec85fa3821b1e24955ea993001";
2016-11-20 21:11:52 +03:00
postFetch = ''
mv $out source
cd source
2016-11-20 21:11:52 +03:00
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 = "175jwq16qjnd2k923n9gcbjizchy7yv4n41dm691sjwrhbl0b13x";
}) // {
meta = with lib; {
homepage = "https://blog.golang.org/go-fonts";
2016-11-20 21:11:52 +03:00
description = "The Go font family";
2022-10-19 08:43:26 +03:00
changelog = "https://go.googlesource.com/image/+log/refs/heads/master/font/gofont";
2016-11-20 21:11:52 +03:00
license = licenses.bsd3;
maintainers = with maintainers; [ sternenseemann ];
2021-01-15 10:29:18 +03:00
platforms = lib.platforms.all;
2016-11-20 21:11:52 +03:00
hydraPlatforms = [];
};
}