about summary refs log tree commit diff
path: root/pkgs/data/fonts/alice
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-11-01 15:30:31 +0100
committerNaïm Favier <n@monade.li>2022-11-01 15:30:31 +0100
commitb4a893c23d4b4829a8dc95aa65b90ef76e48e65d (patch)
tree905d90e9c12686667526f086e7ab7925a88d1e47 /pkgs/data/fonts/alice
parentcd0a368e0835b7ea753cd1282feaf678533fee5b (diff)
alice: init at 2.003
Open-source font by Ksenia Erulevich https://github.com/cyrealtype/Alice
Diffstat (limited to 'pkgs/data/fonts/alice')
-rw-r--r--pkgs/data/fonts/alice/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/data/fonts/alice/default.nix b/pkgs/data/fonts/alice/default.nix
new file mode 100644
index 0000000000000..985ba09926f49
--- /dev/null
+++ b/pkgs/data/fonts/alice/default.nix
@@ -0,0 +1,34 @@
+{ lib, stdenv, fetchzip }:
+
+stdenv.mkDerivation (attrs: {
+  pname = "Alice";
+  version = "2.003";
+
+  outputs = [ "out" "woff2" ];
+
+  src = fetchzip {
+    url = with attrs; "https://github.com/cyrealtype/${pname}/releases/download/v${version}/${pname}-v${version}.zip";
+    stripRoot = false;
+    hash = "sha256-p+tE3DECfJyBIPyafGZ8jDYQ1lPb+iAnEwLyaUy7DW0=";
+  };
+
+  dontBuild = true;
+
+  installPhase = ''
+    runHook preInstall
+
+    install -m444 -Dt $out/share/fonts/truetype fonts/ttf/*.ttf
+    install -m444 -Dt $out/share/fonts/opentype fonts/otf/*.otf
+    install -m444 -Dt $woff2/share/fonts/woff2 fonts/webfonts/*.woff2
+
+    runHook postInstall
+  '';
+
+  meta = with lib; {
+    description = "Open-source font by Ksenia Erulevich";
+    homepage = "https://github.com/cyrealtype/Alice";
+    license = licenses.ofl;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ ncfavier ];
+  };
+})