summary refs log tree commit diff
path: root/pkgs/data/fonts/bakoma-ttf
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-10-03 16:10:22 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-10-03 16:10:22 +0000
commit046a7c735aff9b406a8a770cd777a15bd6461ffd (patch)
tree5829aad6cf87d75f3244f82a6adfb3d7362b2b14 /pkgs/data/fonts/bakoma-ttf
parent7841a05eb1730171cb416932f4d1dbf3df812041 (diff)
downloadnixpkgs-046a7c735aff9b406a8a770cd777a15bd6461ffd.tar
nixpkgs-046a7c735aff9b406a8a770cd777a15bd6461ffd.tar.gz
nixpkgs-046a7c735aff9b406a8a770cd777a15bd6461ffd.tar.bz2
nixpkgs-046a7c735aff9b406a8a770cd777a15bd6461ffd.tar.lz
nixpkgs-046a7c735aff9b406a8a770cd777a15bd6461ffd.tar.xz
nixpkgs-046a7c735aff9b406a8a770cd777a15bd6461ffd.tar.zst
nixpkgs-046a7c735aff9b406a8a770cd777a15bd6461ffd.zip
* bakoma-ttf: TrueType versions of the Computer Modern and AMS TeX Fonts.
svn path=/nixpkgs/trunk/; revision=9402
Diffstat (limited to 'pkgs/data/fonts/bakoma-ttf')
-rw-r--r--pkgs/data/fonts/bakoma-ttf/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/data/fonts/bakoma-ttf/default.nix b/pkgs/data/fonts/bakoma-ttf/default.nix
new file mode 100644
index 00000000000..b913cc132f4
--- /dev/null
+++ b/pkgs/data/fonts/bakoma-ttf/default.nix
@@ -0,0 +1,18 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "bakoma-ttf";
+  
+  src = fetchurl {
+    url = http://nix.cs.uu.nl/dist/tarballs/bakoma-ttf.tar.bz2;
+    sha256 = "1j1y3cq6ys30m734axc0brdm2q9n2as4h32jws15r7w5fwr991km";
+  };
+  
+  buildPhase = "true";
+  installPhase = "ensureDir $out/share/fonts/truetype; cp ttf/*.ttf $out/share/fonts/truetype";
+
+  meta = {
+    description = "TrueType versions of the Computer Modern and AMS TeX Fonts";
+    homepage = http://www.ctan.org/tex-archive/fonts/cm/ps-type1/bakoma/ttf/;
+  };
+}