site/shell.nix

12 lines
160 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 {
nativeBuildInputs = with pkgs; [
python38
python38Packages.mutagen
2020-10-10 10:04:50 +02:00
zola
2020-08-24 23:02:08 +02:00
unzip
wget
];
}