Skip to content

Commit

Permalink
Merge pull request #136647 from jb55/inconsolata-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Oct 16, 2021
2 parents 18d2477 + 97256b8 commit 9d2f5ff
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pkgs/data/fonts/inconsolata/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
{ lib, stdenv, google-fonts }:
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
pname = "inconsolata";
version = "unstable-2021-01-19";

inherit (google-fonts) src version;
src = fetchFromGitHub {
owner = "google";
repo = "fonts";
rev = "f113126dc4b9b1473d9354a86129c9d7b837aa1a";
sha256 = "0safw5prpa63mqcyfw3gr3a535w4c9hg5ayw5pkppiwil7n3pyxs";
};

installPhase = ''
install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/static/*.ttf
install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/*.ttf
'';

meta = with lib; {
Expand Down

0 comments on commit 9d2f5ff

Please sign in to comment.