about summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorromildo <malaquias@gmail.com>2016-12-09 10:16:17 -0200
committerromildo <malaquias@gmail.com>2016-12-09 10:16:17 -0200
commite9a5680eb7175934eef8cd0046fb77083da1ef2e (patch)
tree9cab21da1ed31c9f55423dc427f3e8011c894754 /pkgs/data
parent7833315a5e54cf5db1017cccdc922975dd5eb119 (diff)
downloadnixlib-e9a5680eb7175934eef8cd0046fb77083da1ef2e.tar
nixlib-e9a5680eb7175934eef8cd0046fb77083da1ef2e.tar.gz
nixlib-e9a5680eb7175934eef8cd0046fb77083da1ef2e.tar.bz2
nixlib-e9a5680eb7175934eef8cd0046fb77083da1ef2e.tar.lz
nixlib-e9a5680eb7175934eef8cd0046fb77083da1ef2e.tar.xz
nixlib-e9a5680eb7175934eef8cd0046fb77083da1ef2e.tar.zst
nixlib-e9a5680eb7175934eef8cd0046fb77083da1ef2e.zip
roboto: 2.134 -> 2.135
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/roboto/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/data/fonts/roboto/default.nix b/pkgs/data/fonts/roboto/default.nix
index 711cca5b1641..e0d2545973bb 100644
--- a/pkgs/data/fonts/roboto/default.nix
+++ b/pkgs/data/fonts/roboto/default.nix
@@ -2,18 +2,18 @@
 
 stdenv.mkDerivation rec {
   name = "roboto-${version}";
-  version = "2.134";
+  version = "2.135";
 
   src = fetchurl {
     url = "https://github.com/google/roboto/releases/download/v${version}/roboto-unhinted.zip";
-    sha256 = "1l033xc2n4754gwakxshh5235cnrnzy7q6zsp5zghn8ib0gdp5rb";
+    sha256 = "1ndlh36bcx4mhi58sxfx6ywbib586brh6s5sk3jyji78h1i7j8zr";
   };
 
   nativeBuildInputs = [ unzip ];
 
   installPhase = ''
     mkdir -p $out/share/fonts/truetype
-    cp -a * $out/share/fonts/truetype/
+    cp -a *.ttf $out/share/fonts/truetype/
   '';
 
   meta = {
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
       Material Design.
     '';
     license = stdenv.lib.licenses.asl20;
-    maintainers = [ stdenv.lib.maintainers.romildo ];
     platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.romildo ];
   };
 }