forked from mirrors/nixpkgs
inconsolata: revert to working unstable version
An update to an unstable version of google-fonts broke the Inconsolata monospace font in programs that use xft such as urxvt. This patch reverts some inconsolata back to a working version. cc @jakubgs @06kellyjac @petabyteboy @tu-maurice Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
parent
22fb1d38bf
commit
97256b8953
|
@ -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; {
|
||||
|
|
Loading…
Reference in a new issue