mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
dosis: init at 1.007
This commit is contained in:
parent
d6404ad48e
commit
49e5e972b9
38
pkgs/data/fonts/dosis/default.nix
Normal file
38
pkgs/data/fonts/dosis/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dosis-1.007";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "impallari";
|
||||
repo = "Dosis";
|
||||
rev = "12df1e13e58768f20e0d48ff15651b703f9dd9dc";
|
||||
sha256 = "0glniyg07z5gx5gsa1ymarg2gsncjyf94wi6j9bf68v5s2w3v7md";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/opentype
|
||||
mkdir -p $out/share/doc/${name}
|
||||
cp -v "fonts/OTF v1.007 Fontlab/"*.otf $out/share/fonts/opentype/
|
||||
cp -v README.md FONTLOG.txt $out/share/doc/${name}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A very simple, rounded, sans serif family";
|
||||
longDescription = ''
|
||||
Dosis is a very simple, rounded, sans serif family.
|
||||
|
||||
The lighter weights are minimalist. The bolder weights have more
|
||||
personality. The medium weight is nice and balanced. The overall result is
|
||||
a family that's clean and modern, and can express a wide range of
|
||||
voices & feelings.
|
||||
|
||||
It comes in 7 incremental weights: ExtraLight, Light, Book, Medium,
|
||||
Semibold, Bold & ExtraBold
|
||||
'';
|
||||
homepage = http://www.impallari.com/dosis;
|
||||
license = licenses.ofl;
|
||||
maintainers = with maintainers; [ cmfwyp ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -12019,6 +12019,8 @@ in
|
||||
|
||||
cabin = callPackage ../data/fonts/cabin { };
|
||||
|
||||
dosis = callPackage ../data/fonts/dosis { };
|
||||
|
||||
dosemu_fonts = callPackage ../data/fonts/dosemu-fonts { };
|
||||
|
||||
eb-garamond = callPackage ../data/fonts/eb-garamond { };
|
||||
|
Loading…
Reference in New Issue
Block a user