This commit is contained in:
rhiannon morris 2025-03-03 00:08:57 +01:00
commit 5323992f5b
11 changed files with 292 additions and 0 deletions

19
fonts/muller.nix Normal file
View file

@ -0,0 +1,19 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation rec {
pname = "muller";
version = "2015";
buildInputs = [ pkgs.unzip ];
src = pkgs.requireFile {
name = "Muller.zip";
url = "https://cloud.niss.website";
hash = "sha256-TfVk4El8geTSTsMko1Ej91it/OitXFloihpAAMcGAlg=";
};
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
find Muller -name '*.ttf' -exec cp {} $out/share/fonts/truetype \;
'';
}