summary refs log tree commit diff
path: root/pkgs/data/fonts/paratype-pt/sans.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/data/fonts/paratype-pt/sans.nix')
-rw-r--r--pkgs/data/fonts/paratype-pt/sans.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/data/fonts/paratype-pt/sans.nix b/pkgs/data/fonts/paratype-pt/sans.nix
new file mode 100644
index 00000000000..2958611e474
--- /dev/null
+++ b/pkgs/data/fonts/paratype-pt/sans.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, unzip }:
+
+stdenv.mkDerivation rec {
+  name = "paratype-pt-sane";
+
+  src = fetchurl rec {
+    url = "http://www.paratype.ru/uni/public/PTSans.zip";
+    sha256 = "1j9gkbqyhxx8pih5agr9nl8vbpsfr9vdqmhx73ji3isahqm3bhv5";
+  };
+
+  buildInputs = [unzip];
+
+  phases = "unpackPhase installPhase";
+  sourceRoot = ".";
+
+  installPhase = ''
+    mkdir -p $out/share/fonts/truetype
+    mkdir -p $out/share/doc/paratype
+    cp *.ttf $out/share/fonts/truetype
+    cp *.txt $out/share/doc/paratype
+  '';
+
+  meta = with stdenv.lib; {
+    homepage = "http://www.paratype.ru/public/"; 
+    description = "An open Paratype font";
+
+    license = "Open Paratype license"; 
+    # no commercial distribution of the font on its own
+    # must rename on modification
+    # http://www.paratype.ru/public/pt_openlicense.asp
+
+    platforms = platforms.all;
+    maintainers = with maintainers; [ raskin ];
+  };
+}
+