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

Commits on Feb 11, 2019

  1. agave: 008 -> 009

    dtzWill committed Feb 11, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    benjamn Ben Newman
    Copy the full SHA
    017a7a1 View commit details

Commits on Feb 12, 2019

  1. Merge pull request #55604 from dtzWill/update/agave-009

    agave: 008 -> 009
    dtzWill authored Feb 12, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    benjamn Ben Newman
    Copy the full SHA
    67efb6f View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/data/fonts/agave/default.nix
11 changes: 6 additions & 5 deletions pkgs/data/fonts/agave/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "agave-${version}";
version = "008";
pname = "agave";
version = "009";

src = fetchurl {
url = "https://github.com/agarick/agave/releases/download/v${version}/${name}.tar.gz";
sha256 = "0g50mqpffn4dq761vibaf8dwfkbcl5da1cc89qz6pq35ircipbns";
url = "https://github.com/agarick/agave/releases/download/v${version}/agave-r.ttf";
sha256 = "05766gp2glm1p2vknk1nncxigq28hg8s58kjwsbn8zpwy8ivywpk";
};

sourceRoot = ".";

unpackPhase = ":";
dontBuild = true;
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
cp $src $out/share/fonts/truetype/
'';

meta = with stdenv.lib; {