feat: adds input-djr

This commit is contained in:
2022-04-06 18:20:03 -05:00
parent 0155646a78
commit b8b1feccb2
181 changed files with 603 additions and 3 deletions

23
fonts/default.nix Normal file
View File

@@ -0,0 +1,23 @@
{ pkgs ? import <nixpkgs> {} }:
let
input-font = pkgs.stdenvNoCC.mkDerivation {
pname = "input";
version = "1.0.1";
src = ./.;
dontConfigure = true;
installPhase = ''
runHook preInstall
cp -R out $out/
runHook postInstall
'';
meta = {
description = "Input DJR font";
};
};
in
{
inherit input-font;
}