site/shell.nix

12 lines
154 B
Nix
Raw Normal View History

2020-10-10 10:04:50 +02:00
{ pkgs ? import <nixpkgs> {} }:
2020-08-24 23:02:08 +02:00
pkgs.mkShell {
2020-10-10 20:56:59 +02:00
buildInputs = with pkgs; [
2020-08-24 23:02:08 +02:00
python38
python38Packages.mutagen
2020-10-10 10:04:50 +02:00
zola
2020-08-24 23:02:08 +02:00
unzip
wget
];
}