2019-05-13 03:55:32 +02:00
|
|
|
{ lib, fetchFromGitLab }:
|
2018-12-05 22:12:48 +01:00
|
|
|
|
2019-05-13 03:55:32 +02:00
|
|
|
let
|
2018-12-05 22:12:48 +01:00
|
|
|
pname = "open-sans";
|
|
|
|
version = "1.11";
|
2019-08-13 23:52:01 +02:00
|
|
|
in fetchFromGitLab {
|
2019-05-13 03:55:32 +02:00
|
|
|
name = "${pname}-${version}";
|
2018-12-05 22:12:48 +01:00
|
|
|
|
2019-05-13 03:55:32 +02:00
|
|
|
domain = "salsa.debian.org";
|
|
|
|
owner = "fonts-team";
|
|
|
|
repo = "fonts-open-sans";
|
2020-10-24 21:05:32 +02:00
|
|
|
rev = "debian/1.11-1";
|
2019-05-13 03:55:32 +02:00
|
|
|
postFetch = ''
|
|
|
|
tar xf $downloadedFile --strip=1
|
2018-12-05 22:12:48 +01:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
|
|
|
cp *.ttf $out/share/fonts/truetype
|
|
|
|
'';
|
2019-05-13 03:55:32 +02:00
|
|
|
sha256 = "146ginwx18z624z582lrnhil8jvi9bjg6843265bgxxrfmf75vhp";
|
2018-12-05 22:12:48 +01:00
|
|
|
|
2019-05-13 03:55:32 +02:00
|
|
|
meta = with lib; {
|
2018-12-05 22:12:48 +01:00
|
|
|
description = "Open Sans fonts";
|
|
|
|
longDescription = ''
|
|
|
|
Open Sans is a humanist sans serif typeface designed by Steve Matteson,
|
|
|
|
Type Director of Ascender Corp.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.opensans.com";
|
2018-12-05 22:12:48 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.all;
|
2021-08-02 02:46:24 +02:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
|
2018-12-05 22:12:48 +01:00
|
|
|
};
|
|
|
|
}
|