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: d6d07f262b17
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a53a6565afa5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 13, 2020

  1. fira-code: 4 -> 5

    rycee committed Jun 13, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    rycee Robert Helgesson
    Copy the full SHA
    a53a656 View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/data/fonts/fira-code/default.nix
5 changes: 2 additions & 3 deletions pkgs/data/fonts/fira-code/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{ stdenv, fetchzip }:

let
version = "4";
version = "5";
in fetchzip {
name = "fira-code-${version}";

url = "https://github.com/tonsky/FiraCode/releases/download/${version}/Fira_Code_v${version}.zip";

postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
'';

sha256 = "0n9qkng31ydvpdjc1an4ylpfy4x883c6czhyzvhjsmavd7bv4j9a";
sha256 = "0y2871fd4l304gd7x5xmqyxv5ch9zrqng83xl95rdhlj9zqqk4fz";

meta = with stdenv.lib; {
homepage = "https://github.com/tonsky/FiraCode";