forgot a KreativeSquare
This commit is contained in:
parent
e70a928d67
commit
b88153f320
1 changed files with 5 additions and 10 deletions
|
@ -1,11 +1,6 @@
|
|||
{
|
||||
stdenv,
|
||||
callPackage,
|
||||
lib,
|
||||
}: let
|
||||
source = builtins.fromJSON (builtins.readFile ./source.json);
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
{ stdenv, callPackage, lib }:
|
||||
let source = builtins.fromJSON (builtins.readFile ./source.json);
|
||||
in stdenv.mkDerivation {
|
||||
name = "kreative-square";
|
||||
version = source.date;
|
||||
src = callPackage ./source.nix {};
|
||||
|
@ -13,11 +8,11 @@ in
|
|||
buildPhase = "true";
|
||||
installPhase = ''
|
||||
for variant in "" SM; do
|
||||
install -m444 -Dt $out/share/truetype/KreativeSquare KreativeSquare/$variant.ttf
|
||||
install -m444 -Dt $out/share/truetype/KreativeSquare KreativeSquare/KreativeSquare$variant.ttf
|
||||
done
|
||||
'';
|
||||
meta = {
|
||||
description = "Fullwidth scalable monospace font with many Box Drawing characters";
|
||||
license = lib.licenses.ofl;
|
||||
};
|
||||
}
|
||||
}
|
Reference in a new issue