about summary refs log tree commit diff
path: root/pkgs/data/fonts/barlow
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-18 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-07-18 04:20:00 -0500
commitf1d5d212713455bab527357f781573f0afc41228 (patch)
tree10daea0647430045992e1bd6e8055e9e13e04dc5 /pkgs/data/fonts/barlow
parentcf059b32d98ec2642ddcf6eb9f9ae0ac445f2525 (diff)
barlow: init at 1.422
Diffstat (limited to 'pkgs/data/fonts/barlow')
-rw-r--r--pkgs/data/fonts/barlow/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/data/fonts/barlow/default.nix b/pkgs/data/fonts/barlow/default.nix
new file mode 100644
index 0000000000000..e9257260ea2c6
--- /dev/null
+++ b/pkgs/data/fonts/barlow/default.nix
@@ -0,0 +1,28 @@
+{ lib, fetchzip }:
+let
+  version = "1.422";
+in
+fetchzip rec {
+  name = "barlow-${version}";
+
+  url = "https://tribby.com/fonts/barlow/download/barlow-${version}.zip";
+
+  sha256 = "08ld4c3zq4d1px07lc64i7l8848zsc61ddy3654w2sh0hx5sm5ld";
+
+  postFetch = ''
+    mkdir -p $out/share/fonts/
+    unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
+    unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
+    unzip -j $downloadedFile \*.eot -d $out/share/fonts/eot
+    unzip -j $downloadedFile \*.woff -d $out/share/fonts/woff
+    unzip -j $downloadedFile \*.woff2 -d $out/share/fonts/woff2
+  '';
+
+  meta = with lib; {
+    description = "A grotesk variable font superfamily";
+    homepage = "https://tribby.com/fonts/barlow/";
+    license = licenses.ofl;
+    maintainers = [ maintainers.marsam ];
+    platforms = platforms.all;
+  };
+}