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

Commits on Aug 21, 2018

  1. iosevka-bin: 1.14.3 -> 2.0.0 (#45407)

    "iosevka" needs some work to update to 2.0.0
    (config file must be used instead of arguments to make)
    but don't know that the two necessarily need to be at the same version.
    
    Also I "think" that using the 'ttc' zip is the equivalent of what
    was previously the "pack" but noting this here since haven't found
    this documented elsewhere and am not entirely sure.
    dtzWill authored and xeji committed Aug 21, 2018
    Copy the full SHA
    e18d57f View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/data/fonts/iosevka/bin.nix
6 changes: 3 additions & 3 deletions pkgs/data/fonts/iosevka/bin.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, fetchzip }:

let
version = "1.14.3";
version = "2.0.0";
in fetchzip rec {
name = "iosevka-bin-${version}";

url = "https://github.com/be5invis/Iosevka/releases/download/v${version}/iosevka-pack-${version}.zip";
url = "https://github.com/be5invis/Iosevka/releases/download/v${version}/ttc-iosevka-${version}.zip";

postFetch = ''
mkdir -p $out/share/fonts
unzip -j $downloadedFile \*.ttc -d $out/share/fonts/iosevka
'';

sha256 = "0qc5i6ijr25d2jwi5r4bcvbaw74y1p05a5fvlwss3l9rhmmxsfpl";
sha256 = "17ldxs8rn4y5mzpc6h5rms4khk9fp4d1ixz5bh0pglh1kdansz45";

meta = with stdenv.lib; {
homepage = https://be5invis.github.io/Iosevka/;