nixpkgs/pkgs/data/fonts/iosevka/default.nix

33 lines
846 B
Nix
Raw Normal View History

2015-12-17 10:26:57 +01:00
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "iosevka-${version}";
2015-12-17 10:26:57 +01:00
version = "1.4.2";
src = fetchFromGitHub {
owner = "be5invis";
repo = "Iosevka";
rev = "v${version}";
sha256 = "1h1lmvjpjk0238bhdhnv2c149s98qpbndc8rxzlk6bhmxcy6rwsk";
};
2015-12-17 10:26:57 +01:00
installPhase = ''
fontdir=$out/share/fonts/iosevka
mkdir -p $fontdir
cp -v iosevka-* $fontdir
'';
2015-12-17 10:26:57 +01:00
meta = with lib; {
homepage = "http://be5invis.github.io/Iosevka/";
2015-12-17 10:26:57 +01:00
downloadPage = "https://github.com/be5invis/Iosevka/releases";
description = ''
Slender monospace sans-serif and slab-serif typeface inspired by Pragmata
Pro, M+ and PF DIN Mono, designed to be the ideal font for programming.
'';
license = licenses.ofl;
platforms = platforms.all;
maintainers = [ maintainers.cstrahan ];
};
}