blog/flake.nix

13 lines
394 B
Nix
Raw Permalink Normal View History

2024-06-11 23:57:32 +00:00
{
inputs.flake-utils.url = github:numtide/flake-utils;
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs { inherit system; };
in {
devShells.default = pkgs.mkShell {
2024-06-27 04:22:58 +00:00
buildInputs = with pkgs; [ deno python312Packages.fonttools python312Packages.brotli libavif pandoc imagemagick ];
2024-06-11 23:57:32 +00:00
};
});
}