Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 338c151139aa
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d1d127305c45
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 21, 2020

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    1c45292 View commit details
  2. Merge pull request #78158 from marsam/update-jetbrains-mono

    jetbrains-mono: 1.0.0 -> 1.0.1
    marsam authored Jan 21, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    d1d1273 View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 pkgs/data/fonts/jetbrains-mono/default.nix
10 changes: 6 additions & 4 deletions pkgs/data/fonts/jetbrains-mono/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{ lib, fetchzip }:

let
version = "1.0.0";
version = "1.0.1";
in
fetchzip rec {
name = "JetBrainsMono-${version}";

url = "https://download.jetbrains.com/fonts/JetBrainsMono-${version}.zip";
url = "https://github.com/JetBrains/JetBrainsMono/releases/download/${version}/JetBrainsMono-${version}.zip";

sha256 = "0mwqi66d56v4ml1w7wjsiidrh153jvh0czafyic47rkvmxhnrrhv";
sha256 = "15a8fwyg8ns6krq6nsvgn41iaqbd3lgm3cmv7w370gr6brbn6lxq";

postFetch = ''
unzip $downloadedFile
install -m444 -Dt $out/share/fonts/truetype *.ttf
install -m444 -Dt $out/share/fonts/truetype ttf/*.ttf
install -m444 -Dt $out/share/fonts/woff/ web/woff/*.woff
install -m444 -Dt $out/share/fonts/woff2/ web/woff2/*.woff2
'';

meta = with lib; {