14 lines
264 B
Nix
14 lines
264 B
Nix
|
let
|
||
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
|
||
|
pkgs = import nixpkgs { config = {}; overlays = []; };
|
||
|
in
|
||
|
|
||
|
pkgs.mkShellNoCC {
|
||
|
packages = with pkgs; [
|
||
|
python312
|
||
|
python312Packages.pyyaml
|
||
|
typst
|
||
|
typstyle
|
||
|
];
|
||
|
}
|