first
This commit is contained in:
commit
2203a06c02
12 changed files with 315 additions and 0 deletions
32
fonts/kreative-square.nix
Normal file
32
fonts/kreative-square.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.stdenv.mkDerivation rec {
|
||||
pname = "kreative-square";
|
||||
version = "2024-06-01";
|
||||
|
||||
src = pkgs.fetchzip {
|
||||
url = "https://github.com/kreativekorp/open-relay/releases/download" +
|
||||
"/2024-06-01/KreativeSquare.zip";
|
||||
hash = "sha256-Ftr3/SWyUahNeX9d/Yddkltf9W4GIN3rXGLO6TTubSA=";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
dir=$out/share/fonts/opentype
|
||||
mkdir -p $dir
|
||||
cp ${src}/*.ttf $dir
|
||||
'';
|
||||
|
||||
outputHashMode = "recursive";
|
||||
outputHash = "sha256-ZJ2cAYzCDL8VOhzBhzvoyCJSrHR6XkysLtZ3tUFb6mA=";
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.kreativekorp.com/software/fonts/ksquare";
|
||||
description = "fullwidth monospace font for pseudographics";
|
||||
longDescription = ''
|
||||
Kreative Square is a fullwidth scalable monospace font designed
|
||||
specifically to support pseudographics, semigraphics, and private use
|
||||
characters.
|
||||
'';
|
||||
platforms = pkgs.lib.platforms.all;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue