2024-07-08 20:56:56 +00:00
|
|
|
let
|
2024-08-27 18:27:41 +00:00
|
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-unstable";
|
2024-07-08 20:56:56 +00:00
|
|
|
pkgs = import nixpkgs { config = {}; overlays = []; };
|
|
|
|
in
|
|
|
|
|
|
|
|
pkgs.mkShellNoCC {
|
|
|
|
packages = with pkgs; [
|
|
|
|
python312
|
|
|
|
python312Packages.pyyaml
|
|
|
|
typst
|
|
|
|
typstyle
|
|
|
|
];
|
|
|
|
}
|