summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-03-29 22:07:15 +0000
committerLudovic Courtès <ludo@gnu.org>2008-03-29 22:07:15 +0000
commit553a3af3ceafd4c5e0d5a63444630cbc3aaf9437 (patch)
treeb26a90337fe891ea16768887d2eef9ec3bc64144 /pkgs/data
parentd333c4ee099ef31e29bedf8e3957ef83441295d7 (diff)
downloadnixpkgs-553a3af3ceafd4c5e0d5a63444630cbc3aaf9437.tar
nixpkgs-553a3af3ceafd4c5e0d5a63444630cbc3aaf9437.tar.gz
nixpkgs-553a3af3ceafd4c5e0d5a63444630cbc3aaf9437.tar.bz2
nixpkgs-553a3af3ceafd4c5e0d5a63444630cbc3aaf9437.tar.lz
nixpkgs-553a3af3ceafd4c5e0d5a63444630cbc3aaf9437.tar.xz
nixpkgs-553a3af3ceafd4c5e0d5a63444630cbc3aaf9437.tar.zst
nixpkgs-553a3af3ceafd4c5e0d5a63444630cbc3aaf9437.zip
Update GNU Freefont.
svn path=/nixpkgs/trunk/; revision=11344
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/fonts/freefont-ttf/default.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/pkgs/data/fonts/freefont-ttf/default.nix b/pkgs/data/fonts/freefont-ttf/default.nix
index e1f8c74ae62..50c4b729354 100644
--- a/pkgs/data/fonts/freefont-ttf/default.nix
+++ b/pkgs/data/fonts/freefont-ttf/default.nix
@@ -1,13 +1,27 @@
 {stdenv, fetchurl}:
 
-stdenv.mkDerivation {
-  name = "freefont-ttf-20060126";
+stdenv.mkDerivation rec {
+  name = "freefont-ttf-20080323";
   src = fetchurl {
-    url = http://download.savannah.gnu.org/releases/freefont/freefont-ttf-20060126.tar.gz;
-    md5 = "822aba4e2ed065d9d3ded6e26e495854";
+    url = "mirror://gnu/freefont/${name}.tar.gz";
+    sha256 = "17wkasp5bgzw8n1dxpfcgj5zawfb743ff3cq24qh4brkyfrf2jkr";
   };
+
   installPhase = ''
     ensureDir $out/share/fonts/truetype
     cp *.ttf $out/share/fonts/truetype
   '';
+
+  meta = {
+    description = "GNU Free UCS Outline Fonts";
+
+    longDescription = ''
+      The GNU Freefont project aims to provide a set of free outline
+      (PostScript Type0, TrueType, OpenType...) fonts covering the ISO
+      10646/Unicode UCS (Universal Character Set).
+    '';
+
+    homepage = http://www.gnu.org/software/freefont/;
+    license = "GPLv2+";
+  };
 }