about summary refs log tree commit diff
path: root/pkgs/by-name/qu
diff options
context:
space:
mode:
authorHoang Xuan Phu <phunehehe@gmail.com>2023-12-11 17:54:42 -0500
committerHoang Xuan Phu <phunehehe@gmail.com>2023-12-13 08:34:10 -0500
commitcae164e80b8b9aed2bdca8db86b3f0e6d7cfe7c4 (patch)
tree4e22c7f068eafd5b3f7a503c3b5d0598cc6e1ba3 /pkgs/by-name/qu
parent73ca2df642228129df7a968bad6499732dbc7ddd (diff)
quinze: init at 2018-09-22
Diffstat (limited to 'pkgs/by-name/qu')
-rw-r--r--pkgs/by-name/qu/quinze/package.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/by-name/qu/quinze/package.nix b/pkgs/by-name/qu/quinze/package.nix
new file mode 100644
index 0000000000000..dd029db212370
--- /dev/null
+++ b/pkgs/by-name/qu/quinze/package.nix
@@ -0,0 +1,28 @@
+{ lib, stdenvNoCC, fetchzip }:
+
+stdenvNoCC.mkDerivation {
+  name = "quinze";
+  version = "2018-09-22";
+
+  src = fetchzip {
+    url = "https://fontlibrary.org/assets/downloads/quinze/0271bb7be00ea75dcfa06ef7c7f1054e/quinze.zip";
+    hash = "sha256-6C6drbAHme38tF2PtY/YFDdHCbR0JURs4F/K+KZqKiQ=";
+    stripRoot = false;
+  };
+
+  installPhase = ''
+    runHook preInstall
+
+    install -m444 -Dt $out/share/fonts/truetype *.ttf
+
+    runHook postInstall
+  '';
+
+  meta = with lib; {
+    description = "narrow monospaced font, designed to fit a fifteen pixel bitmap";
+    homepage = "https://fontlibrary.org/en/font/quinze";
+    license = licenses.ofl;
+    maintainers = with maintainers; [ phunehehe ];
+    platforms = platforms.all;
+  };
+}