nixpkgs/pkgs/data/fonts/jetbrains-mono/default.nix

27 lines
717 B
Nix
Raw Normal View History

2020-01-16 09:20:00 +00:00
{ lib, fetchzip }:
let
version = "2.221";
2020-01-16 09:20:00 +00:00
in
2020-07-11 09:20:00 +00:00
fetchzip {
2020-01-16 09:20:00 +00:00
name = "JetBrainsMono-${version}";
url = "https://github.com/JetBrains/JetBrainsMono/releases/download/v${version}/JetBrainsMono-${version}.zip";
2020-01-16 09:20:00 +00:00
sha256 = "1in3znnj0i0yfwj93ncxi3s1cp9lhgwnv2r14br47rr7vik4zjr6";
2020-01-16 09:20:00 +00:00
postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
2020-01-16 09:20:00 +00:00
'';
meta = with lib; {
description = "A typeface made for developers";
homepage = "https://jetbrains.com/mono/";
changelog = "https://github.com/JetBrains/JetBrainsMono/blob/v${version}/Changelog.md";
license = licenses.ofl;
2020-01-16 09:20:00 +00:00
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}