site/shell.nix

14 lines
279 B
Nix
Raw Normal View History

2020-08-24 23:02:08 +02:00
{ pkgs ? import <nixpkgs> {}
, unstable ? import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {}
}:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
python38
python38Packages.mutagen
unstable.zola
unzip
wget
];
}