1
0

feat: initial commit; NixOS Era

This commit is contained in:
2025-11-20 22:13:05 +01:00
commit 8d0bddf680
46 changed files with 2044 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
pkgs ? import <nixpkgs> { system = builtins.currentSystem; },
lib ? pkgs.lib,
...
}:
pkgs.stdenv.mkDerivation rec {
pname = "monaco-font";
version = "1.0";
src = builtins.fetchurl {
url = "https://github.com/taodongl/monaco.ttf/raw/refs/heads/master/monaco.ttf";
sha256 = "sha256:09chm7js9qk80q47d1ybp5imhl0bwjp0kcwfk4i8hcsjbf0cwrvw";
};
dontUnpack = true;
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp $src $out/share/fonts/truetype/monaco.ttf
'';
meta = with lib; {
desscription = "Monaco font";
homepage = "https://github.com/taodongl/monaco.ttf";
licensse = licenses.free;
platforms = platforms.all;
};
}

1
pkgs/monaco-font/result Symbolic link
View File

@@ -0,0 +1 @@
/nix/store/kp450zrxxva5fv7wwpnz841vgxan6c49-nixos-system-blueplum-25.05.811874.daf6dc47aa4b