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: 9434030725e0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bd61f91fd10e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 10, 2019

  1. fira-code: 1.207 -> 2

    fabianhjr committed Sep 10, 2019
    Copy the full SHA
    f5e5aa7 View commit details
  2. Merge pull request #68396 from fabianhjr/upgrade-firacode

    fira-code: 1.207 -> 2
    worldofpeace authored Sep 10, 2019
    Copy the full SHA
    bd61f91 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/data/fonts/fira-code/default.nix
5 changes: 3 additions & 2 deletions pkgs/data/fonts/fira-code/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, fetchzip }:

let
version = "1.207";
version = "2";
in fetchzip {
name = "fira-code-${version}";

@@ -10,9 +10,10 @@ in fetchzip {
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 = "13w2jklqndria2plgangl5gi56v1cj5ja9vznh9079kqnvq0cffz";
sha256 = "0kg9lrrjr6wrd4r96y0rnslnaw2276558a369qdvalwb3q1gi8d2";

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