opensans-ttf: change source to salsa, rename to open-sans
This commit is contained in:
33
pkgs/data/fonts/open-sans/default.nix
Normal file
33
pkgs/data/fonts/open-sans/default.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchFromGitLab }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "open-sans";
|
||||
version = "1.11";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "salsa.debian.org";
|
||||
owner = "fonts-team";
|
||||
repo = "fonts-open-sans";
|
||||
rev = "debian%2F1.11-1"; # URL-encoded form of "debian/1.11-1" tag
|
||||
sha256 = "077hkvpmk3ghbqyb901w43b2m2a27lh8ddasyx1x7pdwyr2bjjl2";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
cp *.ttf $out/share/fonts/truetype
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Open Sans fonts";
|
||||
longDescription = ''
|
||||
Open Sans is a humanist sans serif typeface designed by Steve Matteson,
|
||||
Type Director of Ascender Corp.
|
||||
'';
|
||||
homepage = https://www.opensans.com;
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.worldofpeace ];
|
||||
};
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
{stdenv, fetchzip}:
|
||||
|
||||
fetchzip {
|
||||
name = "opensans-ttf-20140617";
|
||||
|
||||
url = "http://web.archive.org/web/20150801161609/https://hexchain.org/pub/archlinux/ttf-opensans/opensans.tar.gz";
|
||||
|
||||
postFetch = ''
|
||||
tar -xzf $downloadedFile
|
||||
mkdir -p $out/share/fonts/truetype
|
||||
cp *.ttf $out/share/fonts/truetype
|
||||
'';
|
||||
|
||||
sha256 = "0zpzqw5y9g5jk7xjcxa12ds60ckvxmpw8p7bnkkmad53s94yr5wf";
|
||||
|
||||
meta = {
|
||||
description = "Open Sans fonts";
|
||||
longDescription = ''
|
||||
Open Sans is a humanist sans serif typeface designed by Steve Matteson,
|
||||
Type Director of Ascender Corp.
|
||||
'';
|
||||
homepage = https://en.wikipedia.org/wiki/Open_Sans;
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user