https://github.com/Niols/scd.niols.fr
Raw File
Tip revision: 903edf0e2730de84acd380b3f609bab6b19cdb10 authored by Nicolas Jeannerod on 18 March 2024, 20:21:23 UTC
Add “The Three Maestros in the Partyroom” by Mikael Georgii (#194)
Tip revision: 903edf0
lib.nix
{ self, ... }: {
  flake.lib.mkDerivationFor = pkgs: args:
    pkgs.stdenv.mkDerivation ({
      src = self;
      FONTCONFIG_FILE =
        pkgs.makeFontsConf { fontDirectories = [ pkgs.google-fonts ]; };
      ## Do not look this derivation up in substitutes, because it is
      ## never going to be there.
      ## REVIEW: Should change if we introduce Cachix.
      allowSubstitutes = false;
    } // args);
}
back to top