feat: adds input-djr
This commit is contained in:
23
fonts/default.nix
Normal file
23
fonts/default.nix
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user