roboto: 2.134 -> 2.135

This commit is contained in:
romildo 2016-12-09 10:16:17 -02:00
parent 7833315a5e
commit e9a5680eb7

View File

@ -2,18 +2,18 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "roboto-${version}"; name = "roboto-${version}";
version = "2.134"; version = "2.135";
src = fetchurl { src = fetchurl {
url = "https://github.com/google/roboto/releases/download/v${version}/roboto-unhinted.zip"; url = "https://github.com/google/roboto/releases/download/v${version}/roboto-unhinted.zip";
sha256 = "1l033xc2n4754gwakxshh5235cnrnzy7q6zsp5zghn8ib0gdp5rb"; sha256 = "1ndlh36bcx4mhi58sxfx6ywbib586brh6s5sk3jyji78h1i7j8zr";
}; };
nativeBuildInputs = [ unzip ]; nativeBuildInputs = [ unzip ];
installPhase = '' installPhase = ''
mkdir -p $out/share/fonts/truetype mkdir -p $out/share/fonts/truetype
cp -a * $out/share/fonts/truetype/ cp -a *.ttf $out/share/fonts/truetype/
''; '';
meta = { meta = {
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
Material Design. Material Design.
''; '';
license = stdenv.lib.licenses.asl20; license = stdenv.lib.licenses.asl20;
maintainers = [ stdenv.lib.maintainers.romildo ];
platforms = stdenv.lib.platforms.all; platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.romildo ];
}; };
} }