about summary refs log tree commit diff
path: root/pkgs/data/fonts/junicode
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2014-11-03 23:59:30 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2014-11-04 00:04:29 +0000
commitc7457dd1b03bb9873a7c2150646633ae95a3766c (patch)
treee45024fa14b5fc9422619ccf3d50f83576641fb9 /pkgs/data/fonts/junicode
parentc8b3f48865ecee7cbeb02bae82acdacf8b24521a (diff)
junicode: update from 0.6.15 to 0.7.8
Diffstat (limited to 'pkgs/data/fonts/junicode')
-rw-r--r--pkgs/data/fonts/junicode/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/data/fonts/junicode/default.nix b/pkgs/data/fonts/junicode/default.nix
index ea579a589c471..45025701a1d4c 100644
--- a/pkgs/data/fonts/junicode/default.nix
+++ b/pkgs/data/fonts/junicode/default.nix
@@ -1,24 +1,23 @@
 { stdenv, fetchurl, unzip }:
 
 stdenv.mkDerivation {
-  name = "junicode-0.6.15";
+  name = "junicode-0.7.8";
 
   src = fetchurl {
-    url = mirror://sourceforge/junicode/junicode-0.6.15.zip;
-    sha256 = "0p16r5s6qwyz0hayb6k61s5r2sfachlx7r6gpqqx5myx6ipbfdns";
+    url = mirror://sourceforge/junicode/junicode/junicode-0-7-8/junicode-0-7-8.zip;
+    sha256 = "1lgkhj52s351ya7lp9z3xba7kaivgdvg80njhpj1rpc3jcmc69vl";
   };
 
   buildInputs = [ unzip ];
 
-  sourceRoot = ".";
-
   installPhase =
     ''
       mkdir -p $out/share/fonts/junicode-ttf
-      cp *.ttf $out/share/fonts/junicode-ttf
+      cp fonts/*.ttf $out/share/fonts/junicode-ttf
     '';
 
   meta = {
+    homepage = http://junicode.sourceforge.net/;
     description = "A Unicode font";
   };
 }