smc-fonts-flake/flake.nix

22 lines
528 B
Nix
Raw Normal View History

{
2024-10-12 15:54:24 +00:00
description = "A flake that installs SMC fonts. It follows unstable.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-10-12 15:53:10 +00:00
flake-utils.url = "github:numtide/flake-utils";
};
2024-10-12 15:53:10 +00:00
outputs = inputs:
with inputs;
flake-utils.lib.eachDefaultSystem (system:
let
2024-10-12 21:31:59 +00:00
pkgs = import nixpkgs { inherit system; };
2024-10-13 17:17:19 +00:00
fonts-smc = pkgs.callPackage ./default.nix { };
2024-10-12 15:53:10 +00:00
in rec {
packages = {
2024-10-13 17:17:19 +00:00
smc-fonts = fonts-smc;
default = fonts-smc;
2024-10-12 15:53:10 +00:00
};
});
}