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

Commits on Mar 13, 2019

  1. inter-ui: 3.1 -> 3.3 (#57605)

    FWIW new name but not sure worth renaming attribute
    (to 'inter' or maybe 'inter-font'?)
    
    https://github.com/rsms/inter/releases/tag/v3.3
    https://github.com/rsms/inter/releases/tag/v3.2
    dtzWill authored and xeji committed Mar 13, 2019
    Copy the full SHA
    4d82af0 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/data/fonts/inter-ui/default.nix
8 changes: 4 additions & 4 deletions pkgs/data/fonts/inter-ui/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, fetchzip }:

let
version = "3.1";
version = "3.3";
in fetchzip {
name = "inter-ui-${version}";
name = "inter-${version}";

url = "https://github.com/rsms/inter/releases/download/v${version}/Inter-UI-${version}.zip";
url = "https://github.com/rsms/inter/releases/download/v${version}/Inter-${version}.zip";

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

sha256 = "0cdjpwylynwmab0x5z5lw43k39vis74xj1ciqg8nw12ccprbmj60";
sha256 = "17fv33ryvbla4f4mfgw7m7gjlwyjlni90a8gpb7jws1qzn0vgazg";

meta = with stdenv.lib; {
homepage = https://rsms.me/inter/;