nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 23 lines 580 B view raw
1{ lib, stdenvNoCC, fetchzip }: 2 3stdenvNoCC.mkDerivation rec { 4 pname = "mno16"; 5 version = "1.0"; 6 7 src = fetchzip { 8 url = "https://github.com/sevmeyer/${pname}/releases/download/${version}/${pname}-${version}.zip"; 9 stripRoot = false; 10 hash = "sha256-xJQ9V7GlGUTEeYhqYFl/SemS6iqV0eW85YOn/tLgA+M="; 11 }; 12 13 installPhase = '' 14 mkdir -p $out/share/fonts/truetype 15 cp fonts/*.ttf $out/share/fonts/truetype/ 16 ''; 17 18 meta = with lib; { 19 description = "minimalist monospaced font"; 20 homepage = "https://sev.dev/fonts/mno16"; 21 license = licenses.cc0; 22 }; 23}