mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-09 17:42:19 +00:00
11 lines
191 B
Nix
11 lines
191 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
agate
|
|
hugo
|
|
(python3.withPackages (python-pkgs: [
|
|
python-pkgs.python-frontmatter
|
|
]))
|
|
];
|
|
}
|