Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 24 lines 436 B view raw
1{ 2 stdenv, 3 lib, 4 fetchFromGitHub, 5 unzip, 6 ... 7}: stdenv.mkDerivation rec { 8 pname = "SF-Mono"; 9 version = "0"; 10 11 src = fetchFromGitHub { 12 owner = "supercomputra"; 13 repo = "SF-Mono-Font"; 14 rev = "master"; 15 sha256 = "sha256-3wG3M4Qep7MYjktzX9u8d0iDWa17FSXYnObSoTG2I/o="; 16 }; 17 18 nativeBuildInputs = [unzip]; 19 20 installPhase = '' 21 mkdir -p $out/share/fonts/opentype 22 cp *.otf $out/share/fonts/opentype/ 23 ''; 24}