12 lines
160 B
Nix
12 lines
160 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
python38
|
|
python38Packages.mutagen
|
|
zola
|
|
unzip
|
|
wget
|
|
];
|
|
}
|