forked from mirrors/nixpkgs
inconsolata: inherit source and version from google-fonts
This commit is contained in:
parent
5986bd30d9
commit
d155bf8f80
|
@ -1,24 +1,14 @@
|
|||
{ stdenv, fetchFromGitHub }:
|
||||
{ stdenv, google-fonts }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "inconsolata-${version}";
|
||||
version = "2.001";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "fonts";
|
||||
rev = "4c3e95c802f8f12b78869ff50d552014de63f9c1";
|
||||
sha256 = "1ndmsf4c0k36dakmps0vr7hhg5ss8m7ywja7v55xdrinvli58v2f";
|
||||
};
|
||||
inherit (google-fonts) src version;
|
||||
|
||||
installPhase = ''
|
||||
install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/*.ttf
|
||||
'';
|
||||
|
||||
outputHashAlgo = "sha256";
|
||||
outputHashMode = "recursive";
|
||||
outputHash = "04pdg5lzdid4b0gbzykia2jaiajc6pdbv5r8ml5ya9alyw30xza6";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.levien.com/type/myfonts/inconsolata.html;
|
||||
description = "A monospace font for both screen and print";
|
||||
|
|
Loading…
Reference in a new issue