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: 4df737c880a4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a9e7aa932963
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jan 1, 2021

  1. unifont: 13.0.04 -> 13.0.05

    rycee committed Jan 1, 2021
    Copy the full SHA
    63476e2 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    a9e7aa9 View commit details
Showing with 5 additions and 5 deletions.
  1. +3 −3 pkgs/data/fonts/unifont/default.nix
  2. +2 −2 pkgs/data/fonts/unifont_upper/default.nix
6 changes: 3 additions & 3 deletions pkgs/data/fonts/unifont/default.nix
Original file line number Diff line number Diff line change
@@ -4,16 +4,16 @@

stdenv.mkDerivation rec {
pname = "unifont";
version = "13.0.04";
version = "13.0.05";

ttf = fetchurl {
url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.ttf";
sha256 = "sha256-p0wSTyXCXuWIw+hDZ4HZPxgdBJ6oOOqOuX6FzZJmwrE=";
sha256 = "0ff7zbyqi45q0171rl9ckj6lpfhcj8a9850d8j89m7wbwky32isf";
};

pcf = fetchurl {
url = "mirror://gnu/unifont/${pname}-${version}/${pname}-${version}.pcf.gz";
sha256 = "sha256-sKY2qshNV3zXfD2BSbfs0qom1gPt7vD5QmVEkACmx18=";
sha256 = "16n666p6rs6l4r8grh67gy4ls33qfnbb5xk7cksywzjwdh42js0r";
};

nativeBuildInputs = [ libfaketime fonttosfnt mkfontscale ];
4 changes: 2 additions & 2 deletions pkgs/data/fonts/unifont_upper/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ lib, fetchzip }:

let
version = "13.0.04";
version = "13.0.05";
in fetchzip rec {
name = "unifont_upper-${version}";

url = "mirror://gnu/unifont/unifont-${version}/${name}.ttf";

postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";

sha256 = "0bji0crx84nbjf1m1lzql7icrb02zbs3l66dn21pvr9czsry870f";
sha256 = "1cpi44fzsiq3yqg38763awgri1ma46421c3v8167bsxzsx7vzlkp";

meta = with lib; {
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";