os/pkgs/data/fonts/dejavu-nerdfont/default.nix

22 lines
584 B
Nix
Raw Normal View History

2019-12-23 04:59:42 +00:00
{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
name = "dejavu-nerdfont-${version}";
2019-12-23 04:59:42 +00:00
version = "2.0.0";
src = fetchzip {
url = "https://github.com/ryanoasis/nerd-fonts/releases/download/v${version}/DejaVuSansMono.zip";
hash = "sha256-yMvKzt5CKpK1bThT25lqSyRvZRCFvo6HHbTj+ripdCo=";
stripRoot = false;
};
buildCommand = ''
install --target $out/share/fonts/opentype -D $src/*Mono.ttf
'';
meta = with stdenv.lib; {
description = "Nerdfont version of DejaVu";
homepage = https://github.com/ryanoasis/nerd-fonts;
license = licenses.mit;
};
}