font-catcher 1.2.4

A command line font package manager. To see more commands, run `font-catcher --help`
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs ? import <nixpkgs> {} }:
  pkgs.mkShell {
    nativeBuildInputs = [ 
      pkgs.rustup
      pkgs.pkg-config
      pkgs.freetype
      pkgs.openssl
      pkgs.cmake 
      pkgs.llvm
      pkgs.gnumake
      pkgs.expat
      pkgs.fontconfig
    ];
}